How to remove extra zero from price
-
how to remove extra zero
200.00 -> 200
-
Hey,
You need to override the card file of shop package for default theme and can use trim method to remove extra zeroes after (.) operator
Thanks
-
-
Go to packages/Webkul/Core/src/Core.php and edit the method formatPrice() for removing the extra zeroes from price.
-
coere.php ->formatPrice()
$formater->setAttribute(\NumberFormatter::MAX_FRACTION_DIGITS, 0);
-
@bala
Is this solution works for you? -
@bala yes it works on local host perfectly but on live server isnt working
-
@Ahmed-Reda yes ,its working for me .