We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Hide prices on some products in Impluse Theme

Solved

Hide prices on some products in Impluse Theme

tash27
Tourist
8 0 0

I have tried to use various codes to hide only a selection of products on my Impluse theme store with no success. 

Is anyone able to help me out with the code and where it should be placed? 

 

 

Accepted Solution (1)
MaksymKurniy
Shopify Partner
14 2 3

This is an accepted solution.

Alternatively, you can make a separate template without a price

View solution in original post

Replies 6 (6)

topnewyork
Astronaut
1552 192 253

Hi @tash27,

 

kindly provide your store URL please and if it is password protected, please share the password as well.

 

Thanks

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
tash27
Tourist
8 0 0

Hi

Sorry, it's 

ubu6rd-u9.myshopify.com

 

topnewyork
Astronaut
1552 192 253

Hi @tash27,


1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

{% if product.handle == 'groovy' or product.handle == 'another-product' %}
  <style>
    .product-block--price {
      display: none !important;
    }
  </style>
{% endif %}


Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
tash27
Tourist
8 0 0
All products except those in the Prints collection or the Funky feelings collection.

I hope I can work it out for future products as well.

Thanks in advance.

MaksymKurniy
Shopify Partner
14 2 3

This is an accepted solution.

Alternatively, you can make a separate template without a price

tash27
Tourist
8 0 0

This worked great, thanks very much!