Link 使用 Shopify Liquid 的商店主页(索引)
Link to homepage (index) of store using Shopify Liquid
我想 link 我网站的徽标(在我的主 header 中)到我商店的主页。我可以通过 linking 到绝对值 URL(例如,https://www.example.com)来做到这一点,但是当我在未连接的开发服务器上进行测试时,这不起作用到我的域名。
我知道我可以 link 到使用 <a href="{{ pages.example.url }}">
的页面,其中 example
是我想要 link 到的页面。但是使用 <a href="{{ pages.index.url }}">
似乎不起作用——我假设是因为 index
实际上不被认为是一个页面。
有没有使用 liquid 标签 link 到我商店主页的简单方法?
我想出来了,对于那些好奇的人:只是 link 到 "/"
。因此,您站点主页的 link 应该在您的 header.liquid 文件中显示如下:
<a href="/">Link</a>
您可以使用此 variable cheat sheet and in the Shopify developer reference 中所列的 {{ shop.url }}
。
Returns the full URL of a shop.
http://johns-apparel.com
<a href="{{ shop.url }}">Homepage</a>
您还可以选择使用安全版本 {{ shop.secure_url }}
Returns the full URL of a shop prepended by the https protocol.
https://johns-apparel.com
<a href="{{ shop.secure_url }}">Homepage</a>
我还在快速测试中发现,在预览未发布的页面时,它也会 return 预览 URL,例如k29ijan0ye0r5g7k-51325174.shopifypreview.com
我想 link 我网站的徽标(在我的主 header 中)到我商店的主页。我可以通过 linking 到绝对值 URL(例如,https://www.example.com)来做到这一点,但是当我在未连接的开发服务器上进行测试时,这不起作用到我的域名。
我知道我可以 link 到使用 <a href="{{ pages.example.url }}">
的页面,其中 example
是我想要 link 到的页面。但是使用 <a href="{{ pages.index.url }}">
似乎不起作用——我假设是因为 index
实际上不被认为是一个页面。
有没有使用 liquid 标签 link 到我商店主页的简单方法?
我想出来了,对于那些好奇的人:只是 link 到 "/"
。因此,您站点主页的 link 应该在您的 header.liquid 文件中显示如下:
<a href="/">Link</a>
您可以使用此 variable cheat sheet and in the Shopify developer reference 中所列的 {{ shop.url }}
。
Returns the full URL of a shop. http://johns-apparel.com
<a href="{{ shop.url }}">Homepage</a>
您还可以选择使用安全版本 {{ shop.secure_url }}
Returns the full URL of a shop prepended by the https protocol. https://johns-apparel.com
<a href="{{ shop.secure_url }}">Homepage</a>
我还在快速测试中发现,在预览未发布的页面时,它也会 return 预览 URL,例如k29ijan0ye0r5g7k-51325174.shopifypreview.com