Empire theme - change price format

Hi

I am hoping to get some help from some tech legend, I am using the empire theme and need to make edit to how the price is presented on ‘Collection pages’ see screenshot

Instead of a range of price £19.95 - £245.70 I would like to present it like this as bottle price-

From £19.95

So Looks like this

What code do I need to add to do this fix.

Help would be very much appreciated.

Thanks

Akiko

Hi, can you share store url?

https://www.wineshop.co.uk/

Hello @wineshopuk
If you remove the Compare at Price from the product page, the discount price will not be displayed. Otherwise, changes need to be made in the code. For that, I will need store access.

Hi Wineshopuk

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

.price__compare-at.visible {
    display: none !important;
}

span.money.price__current--max {
    display: none !important;
}

Step 3: Find file dynamic-shoppable-image.liquid and delete this code

Best,

Liz

Hi Liz

That is really cool I nearly done it but still get hyphen after price

eg £16.50 -

How do I remove -

Your help apprecaited.