【问题标题】:How to add " You save $xxx " in category / product listing page in Bigcommerce?如何在 Bigcommerce 的类别/产品列表页面中添加“You save $xxx”?
【发布时间】:2016-07-25 17:11:48
【问题描述】:

我们可以选择使用此变量 %%GLOBAL_YouSave%% 在 Bigcommerce 的产品页面上添加“You save $xxx.xx”文本

其中显示了这样的特价和优惠:- http://screencast.com/t/dUkulAqmIL

但是对于类别页面,我们有任何类似的变量吗?我的意思是我们可以在类别页面上显示类似的内容吗?

这样我们就可以在分类页面中添加类似的文字了。

提前谢谢你。

【问题讨论】:

  • 请稍微修改一下您的问题。就目前而言,这很难理解。
  • 嗨@Ares 感谢您的回复我刚刚更新了问题,请查看:)

标签: html e-commerce bigcommerce


【解决方案1】:

我尝试让 %%GLOBAL_YouSave%% 在 CategoryProductsItem.html sn-p 上工作,但没有成功。

我已经为 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>" )
});

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多