All things Shopify and commerce
Greetings, I have only one collection of products that are only for professionals and so I want to hide the price and the Buy button of those products but only for the 99% of the people, the b2b customers can normally see the price and Buy button when they are logged in. I have set those products with a product type of "B2B" and the rest of the products have a product type of "B2C" if this helps.
Thanks in advance
Hey @mpatsia ,
I am not sure about your theme but you can try this.
Open the product.liquid or product-template.liquid file in your theme, and add the following code:
{% if customer %}
{% comment %} Customer is logged in, show price and buy button {% endcomment %}
{{ content_for_header }}
{% else %}
{% comment %} Customer is not logged in, hide price and buy button for B2C products {% endcomment %}
{% if product.type == 'B2C' %}
<p>Contact us for pricing</p>
{% endif %}
{% endif %}
Thanks
Hello Azamgill and thanks for the replay. This will hide the product price for all products but I have those products inside one only collection that I want to hide it.
Please try this.
{% if customer %}
{% comment %} Customer is logged in, show price and buy button {% endcomment %}
{{ content_for_header }}
{% else %}
{% comment %} Customer is not logged in, hide price and buy button for B2C products {% endcomment %}
{% if product.type == 'B2C' and product.collections contains 'YourSpecificCollectionHandle' %}
<p>Contact us for pricing</p>
{% endif %}
{% endif %}
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025