我想问一下如何更改Shopify上标签页的标题格式? 我可以看到标题的代码是这样的:
<title>
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ' %} – {{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ 'general.meta.page' | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %}
</title>
此代码返回此标题,例如标签是“星球大战帆布艺术”中的“星球大战飞机”:
Star Wars Canvas Art | Domain.com - Tagged "Star Wars Aircrafts" - Shop Name
我想要的只是将其简化为:
Star Wars Aircrafts | Star Wars Canvas Art | Domain.com
注意:我想要的只是将其应用于由标签创建的页面。
答案 0 :(得分:1)
我认为这就是你想要的:
{% if current_tags %}
<title>
{% assign meta_tags = current_tags | join: ', ' %}{{ meta_tags }} | {{ collection.title }} | {{ shop.domain }}
{% endif %}
{% if current_page != 1 %} – {{ 'general.meta.page' | t: page: current_page }}{% endif %}
</title>
{% else %}
-- regular title code
{% endif %}