Removing product price from specific collection page - Blockshop Theme

Topic summary

A user needed to remove product prices from a specific collection page (monthly-wholesale-top-picks) on their Shopify store using the Blockshop theme, despite having tried multiple approaches without success.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Insert custom code before the closing </body> tag that targets the specific collection URL
  • The code uses conditional logic to hide prices only when the collection URL contains ‘monthly-wholesale-top-picks’

Outcome:
The solution successfully resolved the issue. The user confirmed the code worked as intended, allowing prices to be hidden on that specific collection page while remaining visible elsewhere on the site.

Summarized with AI on November 22. AI used: claude-sonnet-4-5-20250929.

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?

Hello @tgon

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before

{%  if  collection.url contains 'monthly-wholesale-top-picks' %}
    
        {%  endif %}

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Wow! thank you so much! this worked!

It’s my pleasure to help :heart_eyes: .