Remove pricing on selected collection for Prestige theme

Hi,

I’d like to remove pricing from selected collections. I have this code from another thread:

{% endunless %}> ```

that I’d like to place in the Prestige theme. The product-pricing code is in the product.item.liquid file but I can’t figure where to place the above code. This is the product-pricing code:

{%- if show_price_on_hover == nil -%}> {%- assign show_price_on_hover = settings.product_show_price_on_hover -%}> {%- endif -%}> > {%- if show_price_on_hover and color_swatch_list != blank -%}> {{- color_swatch_list -}}> {%- endif -%}> > {%- if product.template_suffix != ‘coming-soon’ -%}> > {%- if product.compare_at_price > product.price -%}> {{ product.price | money_without_trailing_zeros }}> {{ product.compare_at_price | money_without_trailing_zeros }}> {%- elsif product.price_varies -%}> {%- capture formatted_min_price -%}{{ product.price_min | money_without_trailing_zeros }}{%- endcapture -%}> {%- capture formatted_max_price -%}{{ product.price_max | money_without_trailing_zeros }}{%- endcapture -%}> {{ ‘collection.product.from_price_html’ | t: min_price: formatted_min_price, max_price: formatted_max_price }}> {%- else -%}> {{ product.price | money_without_trailing_zeros }}> {%- endif -%}>

What is your question? You’ve posted some code so is this not working or are you stuck with something?

I have edited the post above. Accidentally hit the enter button while I was typing