Is ther a way to format the price on product pages so they show up as $20 instead of $20.00? We would like the prices to display withou the cents.
Is this possible?
Thanks,
#!/usr/local/bin/perl
$price = $ARGV[0];
if ($price =~ /\.00/) {
$rounded = sprintf("%.0f", $price);
}
else {$rounded = $price;}
print $rounded;
exit;
Users browsing this forum: No registered users and 168 guests