Currency Formatting, Change GBP to £

Hi, i am using Blockshop Theme 13.1.1. I need to change the Currency Formatting from 45.00 GBP to display as £45.00.

My website is HERE

there are 2-3 ways to do it
firstly, settings → general → scroll to currency → change formating
and then set them to as required
for example – £ {{ amount }}

secondly go to edit → code editor–> search for product-pricce.liquid inside snipet
and search for {{ price | money_with_currency }}
to
{{ price | money }}

Hi, both ways did not work. please see the Collection Grid on my collection page still says 45.00 GBP. I wanted this to say £45.00

Can you help?

Is this your only and default Market?

If yes, then first option above should work, like this:

And, telling by the look of your Cart drawer and checkout, this does work.

However, looks like the product page and collection page currency display is intentionally made to match the display of other currencies (in case you offer multiple – non-default currencies use only this format).

To change this, you’d need to edit theme code and since this is a paid theme it’s hard to suggest precise changes without seeing the current code.

JS-rendered sections (cart drawer, etc.) are showing the correct format — that confirms your currency settings are working.

The reason Liquid-rendered sections still show 45.00 GBP is that the theme has additional template files with {{ price | money_with_currency }} that haven’t been updated yet. So you need to edit the theme code.

Which Specific template files need editing for the Collection Pages and Product Pages?

you should check snippets, “product-card–price.liquid” for the collection page
and “product-price.liquid” for product page