Hello @rafz ,
You can try to follow these steps:
- Go to Online Store → Themes → Actions → Edit code
- Go to Sections → collection-template.liquid (or something name similar to this)
- Locate the code that displays the converted price based on the customer’s selected currency. It might look similar to this:
{{ product.price | money }}
Modify the code to display both the original currency and the converted price. Here’s an example of how you can do this:
{{ shop.currency }} {{ product.price | money }}
Save changes and repeat steps for any other template files where you want to display the prices.
Hope this can help.
Ali Reviews team.