我们可以选择使用此变量%% GLOBAL_YouSave %%
在Bigcommerce的产品页面上添加“您保存$ xxx.xx”文字其中显示了这样的特价和节省: - http://screencast.com/t/dUkulAqmIL
但我们是否有类别页面的任何类似变量?我的意思是我们可以在类别页面上显示类似内容吗?
所以我们可以在类别页面中添加类似的文字。
提前谢谢。
答案 0 :(得分:0)
我已经尝试让%% GLOBAL_YouSave %%在CategoryProductsItem.html片段上工作,并且没有成功。
我已经为jQuery中的各种MAP策略做了各种变体。您可以在类别页面中尝试此操作。希望这会有所帮助:
$('.RetailPriceValue').each(function(){
var saveValue = ($(this).html().substring(1)) - ($(this).siblings('.SalePrice').html().substring(1));
saveValue = saveValue.toFixed(2);
$(this).siblings('.SalePrice').append( "<br /><b> You Save: $" + saveValue + "</b>" )
});