Taste theme-How to hid the price on collection page?

Hello everyone,

I recently switched to the Taste theme.

I prefer the price to be invisible on the collection page.

What should I do?

Here is my store URL https://www.blueseaclothing.com/

Thank you for your great help.

Hello @Bluesea

You can add code by following these steps to hide price from collection pages

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

{% if template contains ‘collection’ %}

.card-information .price { display: none !important; }

{% endif %}

Hello @Bluesea

It’s GemPages support team and glad to support you today.

I would like to give you a solution to support you.

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid theme file.

  3. Add the code before tag:

{% if template contains 'collection' %}
     #product-grid .card-information .price{
        display: none !important;
     }
{% endif %}

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

Hi @Bluesea

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag

{% if template contains 'collection' %}

{% endif %}

Hope this answer helps.

Best regards,

Victor | PageFly

Thank you, it works!

Thank you!

1 Like