I was trying to apply a method I know to make a price product displaying the word “Price only on demand” with the tag Hide on the concerned product, coupled with a code I add on product-item.liquid.
{% if product.tags contains 'Hide' %}
Price on Demand
{% else %}
(normal product price code)
{% endif %}
It works on plain collection or search result pages. But in the end, it doesn’t apply on the search results displayed in the drawer. I already tried to put the same code on all the search liquid, snippet etc, but it doesn’t work. Does someone know how to solve this issue on Focal?