Currency format not work for all currencies

I added {{ amount_no_decimals }} to my store but its work only for store default currency. Its not work of other market currencies. I just want to remove decimal part form all currencies.

Hello There,

The {{ amount_no_decimals }} liquid variable is used to display the cost of a product or variant without any decimal places. However, it will only work for the store’s default currency. In order to remove decimal places for all currencies, you will need to use a different approach.

you can use the following code to format the price without decimal places:

“{{ product.price | currency_format: 0 }}”

This will format the price of the product to a whole number, regardless of the currency.

You can use this in the appropriate location on your template where you want the prices to be displayed.

It’s worth noting that depending on the theme that you are using, you may need to make some adjustments to the code in order to display the prices correctly.

Hello,

hope all is well. Where do you mean we should place this: “{{ product.price | currency_format: 0 }}”. ?

Looking forward to your reply