***CORRECTED***
Hi,
You need to use a little trick because by default there's only {CURRENCY} ($CDN) and {NUMBER}
Add this at the very bottom of your theme functions.php:
Notes:
1.- Take care not to leave blank lines after this.
2.- If your theme functions.php doesn't end with ?> skip first line of my code.
<?php
function cust_split_currency_symbol($currencyFormat) {
$symbol = trim(preg_replace('~([\w\d\.,])~', '', $currencyFormat));
$name = preg_replace('~[^a-zA-Z]~', '', $currencyFormat);
$number = preg_replace('~[^0-9\.,]~', '', $currencyFormat);
return $symbol . $number . ' ' . $name;
}
osc_add_filter('item_price', 'cust_split_currency_symbol');
?>
Regards