I messed up my price display on product page

Hello Guys,

I fucked up my price display on product page.

Could someone share his code to adapt with mine ?

Thanks a lot.

Chris.

Add this code in your base.css file:

.price-item.price-item--regular {
  display: none !important;
}

Result:

1 Like

Hello,

That’s perfect, thank you !

Could you add a code for the higher price ?

It doesn’t display…

To display the highest price, you can add the following code to your base.css file:

s.price-item.price-item--regular {
    display: block !important;
}

Result:

1 Like