How to remove price on collection page on showcase template

Hello,

Please can you tell me how to remove the price on the collection page on the showcase template

Hey @chillilondon
Kindly share the URL of the collection from where you want to hide the prices.

https://www.amuselabouche.com/collections/new-in

All my collections but this is just one example

Hey @chillilondon

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.
{% if template contains 'collection' %}

{% endif %}

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Yes thats great it worked for the ‘new in’ page how would i make it the same for all pages and also when someone searches?

For example

SEARCH:

https://www.amuselabouche.com/search?type=product&options%5Bprefix%5D=last&q=cushion

OTHER COLLECTIONS:
https://www.amuselabouche.com/collections/ceramics

I’ve edited the code, please remove the previous code and add the new updated code. This code should work for all the collections.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

For all the collections this works great but still when you search prices still come up , see below:

https://www.amuselabouche.com/search?type=product&options%5Bprefix%5D=last&q=teatowel

Hello @chillilondon

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->styles.css>Add this code at the bottom.

.product-block .price, .collection-block .price {
    display: none;
}
1 Like

Thank you thats great