Reputation: 21
How can I check if the current page is the cart page or not in front side?
I try to find page type using ShopifyAnalytics.meta.page.pageType
. This works for all pages (like product and collection page) but doesn't work for cart page.
If you have any idea, please give answer.
Upvotes: 1
Views: 348
Reputation: 11
add this condition
{% if template == 'cart' %}
//your code here
{% endif %}
Upvotes: 2