点击这里查看视频演示 本期 YouTube 链接(免登录观看 4K)
快速在同一个 Shopify 产品系列中的产品之间导航,方便客户快速浏览同类产品,找到自己想要的产品,提高订单转化。
创建 Snippet
next-prev.liquid
<style>
@media screen and (max-width: 768px) {
.nav-np {
display: none;
}
}
.nav-np {
font-size: 17px;
position: absolute;
right: 0;
top: -20px;
}
.nav-np a {
color: #000;
text-decoration: none;
}
.nav-np a:hover {
color: #0a0acb;
}
</style>
<div class="nav-np">
{% if collection.previous_product %}
{{ '< Previous product' | link_to: collection.previous_product.url, collection.previous_product.title }}
{% endif %}
{% if collection.previous_product and collection.next_product %}
<span style="color: #fdcc0d;">|</span>
{% endif %}
{% if collection.next_product %}
{{ 'Next product >' | link_to: collection.next_product.url, collection.next_product.title }}
{% endif %}
</div>
修改上一个父级元素为相对定位
style="position: relative;"
引用 Snippet (例如标题上方)
{% render 'next-prev' %}