'当前我想显示查看所有"收藏标题"。我使用前置成功执行此操作。但是,创建时 shopify 主题要求之一是语言支持/翻译。
<div class="collection-cta">{{ product_collection.title | prepend: 'View All ' | link_to: product_collection.url }}</div>
我无法弄清楚如何预置 shopify 翻译标记。
{{ 'collections.general.view_all' | t }}
这会正确输出"查看所有"文本翻译,但事实证明,在 prepend:"' 内部工作是有问题的。我无法找到有关此的强大文档,因此任何观点都很棒。
这个怎么样?
<a href="{{product_collection.url }}">{{product_collection.title}} {{ 'collections.general.view_all' | t }}</a>
无需使用link_to...我不完全清楚液体的内部运作方式,但它确实需要一定数量的论点......添加 prepend 和翻译标签可能已经抛出它。
所以把它全部分开 - 它应该可以工作。