Solved

Removing product price from specific collection page - Blockshop Theme

tgon
Tourist
8 0 1

I've been trying to change a very specific collection that I have a template for and remove the price from it.

https://www.giantvintage.com/collections/monthly-wholesale-top-picks

 

I made a theme template for just this collection and want to remove the price for it. I've tried everything but still can't get it right. Does anyone have any ideas? 

Screen Shot 2023-01-30 at 10.42.04 AM.png

 

Accepted Solution (1)

GemPages
Shopify Partner
5588 1261 1203

This is an accepted solution.

Hello @tgon 

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1675217304171.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1675217550293.png

     {%  if  collection.url contains 'monthly-wholesale-top-picks' %}
    <style>
       .product--price-container {
        display: none !important;
    }
    </style>
        {%  endif %}

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

Replies 3 (3)

GemPages
Shopify Partner
5588 1261 1203

This is an accepted solution.

Hello @tgon 

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1675217304171.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1675217550293.png

     {%  if  collection.url contains 'monthly-wholesale-top-picks' %}
    <style>
       .product--price-container {
        display: none !important;
    }
    </style>
        {%  endif %}

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
tgon
Tourist
8 0 1

Wow! thank you so much! this worked!

GemPages
Shopify Partner
5588 1261 1203

It's my pleasure to help 😍.

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center