我正在使用可配置的产品,我在Magento的后端设置了选项,以显示价格Incl TAX和Excl Tax。
我的问题是,在可配置产品选项的下拉列表中,它还显示Incl TAX和Excl TAX。
我需要它在产品页面的价格区域中显示两个选项,但在下拉列表中仅显示Excl Tax,因此它会删除Incl TAX我已经获得了屏幕截图,需要删除红色区域。
答案 0 :(得分:2)
我已经得到了一些外部帮助,并提出了解决方案。这是基于Magento 1.5.1.0。
在app / design / frontend / default / YOURTEMPLATE / template / catalog / product / view / type / options /.
中找到文件configurable.phtml替换它:
<script type="text/javascript">
var spConfig = new Product.Config(<?php echo $this->getJsonConfig(); ?>);
</script>
有了这个:
<?php
// get current drop down string
$currentstring = $this->getJsonConfig();
// create new string with true set to false using str_replace function (string replace)
$newstring = str_replace( '"showBothPrices":true,"', '"showBothPrices":false,"', $currentstring );
?>
<!-- render dropdown but with new var ($newstring) -->
<script type="text/javascript">
var spConfig = new Product.Config(<?php echo $newstring ?>);
</script>
这仅适用于可配置产品。如果你想对简单产品的自定义选项做同样的事情,只需更改:
<?php echo $this->getValuesHtml() ?>
为此:
<?php echo preg_replace("/\([^)]+\)/","", $this->getValuesHtml()); ?>
在此文件中:app / design / frontend / default / YOURTEMPLATE / template / catalog / product / view / options / type / select.phtml
希望这有帮助