所以我试图将两个解决方案合并在一起形成一个...... 我一直在使用this answer中的代码删除"(含税)"从可配置产品的产品页面选项选择器,它运作良好。 如链接的答案所示,在app / design / frontend / rwd / myTheme / template / catalog / product / view / type / 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>
这有隐藏(含税)的理想结果,让我开心。
后来,我被问到是否可以更改选择框中的文字,阅读&#34;选择一个选项&#34;选项名称或&#34;选择(选项名称):&#34;
我发现the following answer完美无缺 - 它用
替换了同一文件的完整内容<?php
$_product = $this->getProduct();
$_attributes = Mage::helper('core')->decorateArray($this->getAllowAttributes());?>
<?php if ($_product->isSaleable() && count($_attributes)):?>
<dl>
<?php foreach($_attributes as $_attribute): ?>
<dt><label class="required"><em>*</em><?php echo $_attribute->getLabel() ?></label></dt>
<dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
<div class="input-box">
<?php $chooseText = $this->__('Select %s', $_attribute->getLabel()); ?>
<select data-choose-text="<?php echo $chooseText; ?>" name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
<option><?php echo $chooseText; ?></option>
</select>
</div>
</dd>
<?php endforeach; ?>
</dl>
<script type="text/javascript">
Product.ConfigDefaultText = new Class.create(Product.Config, {
fillSelect: function($super, element) {
$super(element);
var chooseDefaultText = element.getAttribute('data-choose-text');
$(element).options[0] = new Option(chooseDefaultText, '');
}
});
var spConfig = new Product.ConfigDefaultText(<?php echo $this->getJsonConfig() ?>);
</script>
现在这很好用,我们可以将选项标签设置为我们喜欢的任何东西,但在此过程中我们的&#34;(含税)&#34;我的一天又毁了。
我正在找人告诉我如何合并这两段代码并让它们很好地一起玩,这样我就可以同时拥有自定义产品选项文本并防止&#34;(含税) &#34;出现的字符串。
最值得赞赏的任何帮助。
答案 0 :(得分:0)
找到我自己的解决方案:
首先,从第一个答案中删除代码,使用第二个代码中的代码,然后更改varien / configurable.js(或更好的格式,创建重写版本),如下所示:
var str = option.label;
if(price){
if (this.taxConfig.showBothPrices) {
//CHANGE THIS
//str+= ' ' + this.formatPrice(excl, true) + ' (' + this.formatPrice(price, true) + ' ' + this.taxConfig.inclTaxTitle + ')';
// TO THIS:
str+= ' ' + this.formatPrice(price, true);
} else {
str+= ' ' + this.formatPrice(price, true);
}
}
return str;