BigCartel设置的“上一个”和“下一个”变量的默认文本,如下所示:“«上一页”和“下一页»”,怎么会如果代码是变量,我将这些更改为我想要他们说的任何内容? (如下所示):
{% if paginate.previous.is_link or paginate.next.is_link %}
{{ paginate | default_pagination }}
{% endif %}
{% else %}
<p class="alert-noproducts">No products found.</p>
{% endif %}
{% endpaginate %}
以下是我正在处理的网站,如果需要的话:
答案 0 :(得分:0)
您可以使用"replace"编辑该变量,例如:
将产品页面中的{{ paginate | default_pagination }}
替换为:
{{ paginate | default_pagination | replace: "Next »", "New Text Here" | replace: "« Previous", "New Text Here" }}
答案 1 :(得分:0)
{{ paginate | default_pagination: "id", "class", "previous", "next"}}