{% if page.url %} can't work on product.liquid

Hi

I want to add a liquid on one of my product, I use this, but it can’t work on product.liquid, it’s there any wrong with my code? It can perfectly work on other pages liquid but product page.

{% if page.url == '/products/product-name' %}
      {% include 'product-name.liquid' %}
{% endif %}

Please help me to solve this, thank you very much

Hello, @dosparkling

can you please try this.

{% if product.url == '/products/product-name' %}
      {% include 'product-name.liquid' %}
{% endif %}
1 Like

Hi @KetanKumar
It’s work !! Thank you very much !

Hey Ketan, I was wondering how to do this with a regular page URL?