Hidden Prices

Topic summary

A Shopify store owner reported that product prices were disappearing from their collection pages, only briefly appearing when filters were reset.

Root Cause Identified:

  • Multiple users identified a display:none CSS property was hiding the prices
  • One user suggested the issue might be caused by the Sami B2B app’s price-hiding feature

Solution Provided:

  • Add CSS code to the base.css file (Shopify Admin > Online Store > Edit Code)
  • Insert .price { display: block !important; } at the end of the file
  • This overrides the hidden display property and forces prices to show

Outcome:

  • The store owner confirmed the CSS solution successfully resolved the issue
  • Prices now display consistently on product pages
Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Hello, i have my store not displaying any prices of the product. When i press reset filters it seems to come up but then go hidden again.

I need it to be there all the time please help thanks

https://www.doorlab.co.uk/collections/front-doors

This is the link of my product page

There is a “display:none” property in the code that is why he is not showing the price. Simply go to the code and change “display:none” to “display:inline-block”.

Hey @Doorlabs I check that you make the pricing display none. To make it display block you need to follow these steps.

Go to Shopify Admin > Online Store > Edit Code > base.css.

Go to the end of base.css file and paste the following code.

.price {
    display: block !important;
}

Results:

It seems like you are using Sami B2B app , they have a function that hide prices, can you go to the app and check if this settings is enabled?

thank you that has worked!