Remove decimals from price
-
Hello. First, thank you for offering this useful plugin.
I have tried to disable the decimals from settings, deleting the comma, but when updating a product, the price is altered: it begins to delete numbers.
Maybe in a future update, you can put the option to disable decimals, it would be very useful.
Searching the forum, 7 years ago a user had a similar problem and fixed it with JQuery. Below is a similar code.
$('.price-value').each(function() { var text = $(this).text(); $(this).text(text.replace(',00', '')); }); $('.product-price').each(function() { var text = $(this).text(); $(this).text(text.replace(',00', '')); });
Thank you very much for the plugin.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Remove decimals from price’ is closed to new replies.