更改"Previous"和"Next"变量的默认文本


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

您可以使用"替换"来编辑该变量,例如:

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

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

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

相关内容

  • 没有找到相关文章

最新更新