I want to remove the product price on my collection page

Topic summary

A store owner wants to hide product prices from their collection page display.

Solution provided:

  • Navigate to Shopify Admin → Online Store → Themes → Edit Code
  • Open the base.css file in the Assets folder
  • Add CSS code at the end: .card-informa tion>.price { display: none; }

This CSS targets the price element within product cards and hides it from view. The solution appears straightforward and directly addresses the customization request.

Summarized with AI on October 25. AI used: claude-sonnet-4-5-20250929.

Hello,

I want to remove the product price on my collection page.

here is the link : https://embrace-the-grind.com/

1 Like

Hi @embracethegrind

  1. From your Shopify Admin, navigate to Online Store > Themes > Edit Code
  2. In the Assets folder, open base.css and add your CSS code at the end
.card-information>.price {
    display: none;
}

Note: If you’d like my help with these improvements, feel free to contact me at devcodersp@gmail.com

Please like and accept my solution. :white_check_mark:

2 Likes