How can i delete the comma and zero's

Hi, i was wondering how i can delete the comma and zero’s like on the screenshot

senzrimzsembrizsmerbszdf.PNG

Hi @flaner ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Layout/theme.liquid
  2. Add code below to end of file and before tag

  1. Go to Assets/product-info.js

  2. find “renderProductInfo({ requestUrl, targetId, callback }) {”

  3. Refer the screenshot to add code below after “callback(html)” line

var prices =  document.querySelectorAll(".price-item");
            prices.forEach(price => {
              var priceContent = price.textContent.replaceAll(',00','')
              price.textContent = priceContent;
            });

  1. NOTE: THIS ONE WILL NOT WORK ON CHECKOUT PAGES, EMAIL TEMPLATE. IT ONLY WORKS ON FRONT END.
1 Like

Hi, thank you so much man! You’re a legend! It worked.