Hi @Element1
To remove currency decimals from product cards for all currencies in Shopify collections, ensure you’re using a proper formatting method for multi-currency handling. You can update your code as follows:
- Go to Online Store > Themes > Actions > Edit Code: https://prnt.sc/U-e0sESi0__h
- Open the file where product pricing is displayed, often product-card.liquid or collection-template.liquid.
- Find the code displaying the price, usually {{ product.price | money }}.
- Replace it with {{ product.price | money_without_trailing_zeros }} to remove decimals globally.
- Save and refresh your site.
This ensures decimal removal for all currencies.
If you have other questions, I am willing to answer them more.
Best regards,
Daisy