How can I remove Decimals in the price of Virtuemart (mod_news_pro_gk4

Free responsive Joomla 2.5 and 3.x module to present your content with easy and intuitive way.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Tue Mar 29, 2011 1:16 pm
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?
User avatar
Fresh Boarder

GK User
Wed Apr 06, 2011 11:56 pm
Hi, do this to make change.

Open modules/mod_news_pro_gk4/tmpl/layout.parts.php and find:
Code: Select all
$news_price = sprintf('%.2f', $news_price);

Change to:
Code: Select all
$news_price = sprintf('%.0f', $news_price);

Save & done.
User avatar
Fresh Boarder


cron