check if user not logged in shopify
######## Solution 1:
{% if customer.id == null %}
//Your stuff here if user is not logged in
{% endif %}
######## Solution 2:
{% if customer %}
This customer is logged in.
{% else %}
This customer is not logged in.
{% endif %}
######## Solution 3:
{% unless customer %}
This customer is not logged in.
{% endunless %}