Hidden Prices

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!