カートページとチェックアウトページでカスタムオプションの各価格を表示しようとしています。
そのため、このファイルを変更しました: app/code/core/Mage/Catalog/Helper/Product/Configuration.php の 75 行目
$options[] = array(
'label' => $option->getTitle(),
'value' => $group->getFormattedOptionValue($itemOption->getValue()),
'print_value' => $group->getPrintableOptionValue($itemOption->getValue()),
'option_id' => $option->getId(),
'option_type' => $option->getType(),
'custom_view' => $group->isCustomizedView(),
//##my changing
'my_price' => $option->getPrice()
);
ただし、これはフィールドでのみ機能し、カスタム オプションが選択ボックスまたはラジオ ボタンの場合は機能しません。
誰か助けてくれませんか、ありがとう!