Hi there. We have some products in our range which need consultation so I’ve designed a new product template which doesn’t show price.
However, on the collection grid, those products show “$0” which doesnt look right.
I just to be able to hide those prices on the collection grids.
I’ve been playing around with inserting the following code in product-item.liquid but I’m not sure of what I’m doing. I don’t know what to add after {{product.price}} in order to hide it.
Welcome to the Shopify Community! Thanks for asking a good question on community.
I saw your issue and it is very simple for me.
also the above code is not the correct way to do. You can only add one line of code before {{ product.price }} . If any confusion please let me know, I’m here to help you.
{% if product.price > 0 %}
here you can add your product price code
{% endif %}