ショッピング カート ページ、チェックアウトなどでバンドルされた製品オプションの価格を削除するのを手伝ってください。これが写真です。
私は何をする必要がありますか?
別の方法を見つけました。うまくいけば、それは誰かを助けるでしょう。
1 - /public_html/app/code/core/Mage/Bundle/Helper/Catalog/Product に移動します
2 - ファイル Configuration.php を開きます
3 - 約 119 行目から約 127 行目までに、次のコードがあります。
foreach ($bundleSelections as $bundleSelection) {
$qty = $this->getSelectionQty($product, $bundleSelection->getSelectionId()) * 1;
if ($qty) {
$option['value'][] = $qty . ' x ' . $this->escapeHtml($bundleSelection->getName())
. ' ' . Mage::helper('core')->currency(
$this->getSelectionFinalPrice($item, $bundleSelection)
);
}
}
次のコードでそれを変更します。
foreach ($bundleSelections as $bundleSelection) {
$qty = $this->getSelectionQty($product, $bundleSelection->getSelectionId()) * 1;
if ($qty) {
$option['value'][] = $this->escapeHtml($bundleSelection->getName());
}
}
コア ファイルの編集には注意が必要です。ローカルまたはモジュールの書き換えも使用できます。