Answers for "check user login or not in Shopify"

0

check user login or not in Shopify

{% if shop.customer_accounts_enabled %}
2	
  	{% if customer %}
3	
    	<a href="{{ routes.account_url }}">Account</a>
4	
  	{% else %}
5	
    	<a href="{{ routes.account_login_url }}">Login</a>
6	
7	
    	{% if shop.customer_accounts_optional %}
8	
      	<span>or</span>
9	
      	<a href="{{ routes.account_register_url }}">Create an account</a>
10	
    	{% endif %}
11	
  	{% endif %}
12	{% endif %}
Posted by: Guest on December-30-2021

Code answers related to "check user login or not in Shopify"

Code answers related to "Javascript"

Browse Popular Code Answers by Language