在shopify中隐藏未登录客户的文本

在shopify中隐藏未登录客户的文本,shopify,Shopify,我一直在使用: {% if customer %} Add to cart code goes here {% endif %} 向非客户隐藏购物车按钮,但是否有代码向客户隐藏物品?我想向非客户显示一个链接,所以请注册,但我不希望客户在登录后看到该链接 谢谢, 迈克如果还有别的,就用它 {% if customer %} <a href="/account">Your Account</a> {% else %} {{ 'Log in' | custom

我一直在使用:

{% if customer %}  
    Add to cart code goes here 
{% endif %}
向非客户隐藏购物车按钮,但是否有代码向客户隐藏物品?我想向非客户显示一个链接,所以请注册,但我不希望客户在登录后看到该链接

谢谢, 迈克

如果还有别的,就用它

{% if customer  %}
<a href="/account">Your Account</a>
{% else %}
{{ 'Log in' | customer_login_link }}
{% endif %}
{%if customer%}
{%else%}
{{‘登录’|客户_登录_链接}
{%endif%}
如果需要,请使用

{% if customer  %}
<a href="/account">Your Account</a>
{% else %}
{{ 'Log in' | customer_login_link }}
{% endif %}
{%if customer%}
{%else%}
{{‘登录’|客户_登录_链接}
{%endif%}