I’m using the Venture theme and on the product page I would like to show the text call us for price when the product price is € 0,00 (instead of € 0,00).
I would also like it if the add to card button will not show and the VAT line.
@DennisElbers In your product-template.liquid file you can check the price of the current variant and if it is 0, you may display a message of your choice. You may check it with the condition “{% if current_variant.price == 0 %}”. Search for the string “product-single__price” and wrap it in the condition, you would change it something like the following
Note: It would only work for a product that has one variant. If a product has multiple variants it requires a page refresh, to avoid this situation you would also need to check the variant price in JS and change the code with the same logic.