Hi,
Is there a way to only remove currency symbol from product page and only keep the price number?
I only need this for product page, so need to have the number/symbol format in cart.
Product page display: "5.00"
Cart display: "5.00 $"
Editing currency doesn't help as it removes symbol for all pages.
The reason for this is - I already have an image with currency symbol on it and I need to add the correct price without the symbol.
Thanks.
You need a template override for product detail page.
Then you get the price with
echo round($this->product->prices[basePriceWithTax], 2);
You could find more information here to print out prices
http://forum.virtuemart.net/index.php?topic=104194.0