在大卡特尔隐藏价格



我试图在我的大卡特尔网站上隐藏某些产品的价格,以及"即将到来"的文本。我正在使用Sidecar主题。我试着使用几年前有人在这里发布的代码,但没有任何效果。有人能帮我吗?提前谢谢。

以下代码是隐藏这两者的最简单方法:

div.product-price { display: none; }
div.status-text { display: none; }

转到"设计">代码>自定义CSS

不幸的是,在某些主题上,即将到来/售罄的盒装背景仍然存在。

unless前往救援!

创建一个带有产品ID的[145758, 9675466, 6872210]数组,该数组不显示价格并很快混合。

你可以通过product.id找到产品id

{% assign productIds = "145758,9675466,6872210" | split: ',' %}

仅当不满足约束时才打印unless

这不打印任何内容:

{% unless input contains '145758' %} Your comming or price HTML code block here {% endunless %}

这打印出";您的块html代码":

{% unless input contains '444444' %} Your comming or price HTML code block here{% endunless %}

相关内容

  • 没有找到相关文章

最新更新