管理者の製品ページのデフォルト設定では不可能です。
ただし、元の価格ストライキを表示するように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なし)。