disha Lashkari
disha Lashkari

Reputation: 21

How to check page is cart page or not in Shopify

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

Answers (1)

mobile buddy
mobile buddy

Reputation: 11

add this condition

{% if template == 'cart' %}
//your code here
{% endif %}

Upvotes: 2

Related Questions