我希望在用户点击全部查看时查看最多的产品数量。
我一直在关注本教程: https://help.shopify.com/themes/customization/collections/add-view-all-to-collection-pages
我已经完成了大部分工作,但它似乎并没有在最后一步工作。我知道我可能没有做过我需要的HTML基础知识,而且我不能解决这个问题,因为我对此很陌生。
非常感谢任何帮助。
答案 0 :(得分:0)
为了在您的商店中制作包含所有产品的页面,您可以创建目录页面。您的目录页面位于在线商店的table{
counter-reset: rows; /* initalize the counter variable */
}
tr{
counter-increment: rows; /* increment the counter every time a tr is encountered */
}
td{ /* just for demo */
vertical-align: top;
width: 100px;
}
td:first-child:before{ /* add the counter value before the first td in every row */
content: counter(rows) ". ";
}
。它是Shopify创建的自动收藏,默认存储在您的商店中。它将显示您店铺中未隐藏的所有产品,包括缺货的产品。此页面可以放在您的主页或其他页面上。
您可以在Shopify's Help website上了解如何执行此操作。