更改“上一个”和“下一个”变量的默认文本

时间:2014-02-17 16:56:00

标签: html css e-commerce bigcartel

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 %}

以下是我正在处理的网站,如果需要的话:

http://shopmoonfall.bigcartel.com/products

2 个答案:

答案 0 :(得分:0)

您可以使用"replace"编辑该变量,例如:

将产品页面中的{{ paginate | default_pagination }}替换为:

{{ paginate | default_pagination | replace: "Next &raquo;", "New Text Here" | replace: "&laquo; Previous", "New Text Here" }}

答案 1 :(得分:0)

{{ paginate | default_pagination: "id", "class", "previous", "next"}}