管理员中“产品”页面上的默认设置无法使用。
但是您可以自定义bundle / catalog / product / price.phtml以显示原始价格警示。
<p class="old-price">
<span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
<span class="price" id="old-price-<?php echo $this->getIdSuffix() ?>">
<?php
/** Changes - To show the regular price for Bundled Product **/
$_storeId = $_product->getStoreId();
$_store = $_product->getStore();
$_id = $_product->getId();
$_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());
$_convertedPrice = $_store->roundPrice($_store->convertPrice($_product->getPrice()));
$_price = $_taxHelper->getPrice($_product, $_convertedPrice);
$_regularPrice = $_taxHelper->getPrice($_product, $_convertedPrice, $_simplePricesTax);
$_specialPriceStoreLabel = $this->getProductAttribute('special_price')->getStoreLabel();
/** Ends - To show the regular price for Bundled Product **/
echo $regular_formatted_price = $_coreHelper->formatPrice($_regularPrice, false) ;
?>
</span>
</p>
<p class="special-price">
<span class="price-label"><?php echo $_specialPriceStoreLabel ?></span>
<span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
<?php echo $_coreHelper->currency($_minimalPriceTax) ?>
</span>
</p>
我已经在这里上传了price.phtml,请根据您的纳税设置进行查看和修改:https :
//github.com/svlega/Bundled-Price
这适用于税收设置,以显示含税的价格(不包括FPT)。