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

In shopify hide from text from non logged in customer

我一直在使用:

{% if customer %}  
    Add to cart code goes here 
{% endif %}

要对非客户隐藏购物车按钮,但是是否有代码可以对客户隐藏东西?我想向非客户展示 link 所以注册,但我不希望客户在登录后看到 link。

谢谢, 迈克

就用if else

{% if customer  %}
<a href="/account">Your Account</a>
{% else %}
{{ 'Log in' | customer_login_link }}
{% endif %}