Hi.
I use the Symmetry theme and I want to replace the price in one category with some text.. Can someone help me?
Hey @Jonas81
Could you please provide your Store URL and, if applicable, the Password too? Also, can you please tell me what text you want to add on that specific product and on which product? Your cooperation is greatly appreciated!
Best Regards,
Moeed
@Jonas81 , Just find the code for the price that is visible on your store and update it with the below code. Please note that update the collection handle “xyz” with your actual collection handle name.
{% if collection.handle == 'xyz' %}
Contact for Price
{% else %}
{{ product.price | money }}
{% endif %}
It seems to be a good suggestion, now is the hard work to find the right code.
@Jonas81 , yeah if you don’t have liquid knowledge then it is hard to find the code.
let us know if you have any doubts about finding code in the theme.
Now is the “Contact for info” on the collection page but if I want it on the product page, can I look for the .liquid file that handle the product page and paste the code there (and change collection.handle to product.handle) ?