I set up edit store in virtuemart: decimals is O;
Ex: My price in virtuemart is 150JPY, but when i use mod_news_pro_gk4 IT SHOW 150.00JPY
Now i want to remove decimals .00 in mod_news_pro_gk4. how can i do now?
$news_price = sprintf('%.2f', $news_price);
$news_price = sprintf('%.0f', $news_price);