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

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

Hi @flaner ,
May I suggest to update code these steps:
Go to Assets/product-info.js
find “renderProductInfo({ requestUrl, targetId, callback }) {”
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;
});
Hi, thank you so much man! You’re a legend! It worked.