Hi All,
I am currently working on a theme extension. I have a product ID in the following format: gid://shopify/Product/8789. How can I find this product in Liquid and convert it properly?
Any help would be appreciated!
Hi All,
I am currently working on a theme extension. I have a product ID in the following format: gid://shopify/Product/8789. How can I find this product in Liquid and convert it properly?
Any help would be appreciated!
On which page you need to find the product ID?
Example:-
On Product Page
You get directly by using {{ product.id }}
On Collection Page
Here you will get by looping through
f{% for c in collection.products %}
{% assign pId = c.id %}
{{ pId }}
{% endfor %}