- This topic has 2 replies, 3 voices, and was last updated 5 years, 8 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › eStore – currency symbol twice in email tag
Tagged: currency symbol
I am using {product_details} email tag in purchase confirmation email. That is result when buying product Kurssi C:
Kurssi C x 1 – kr1.00 (NOK)
So there is currency symbol twice (both kr and NOK ). I would like to remove either of them so that result should be
Kurssi C x 1 – kr1.00 or
Kurssi C x 1 – 1.00 (NOK)
Any ideas?
Hi, please do the following:
1) Install the updated version of eStore that I just emailed you.
2) Add the following piece of code to the functions.php
file of your theme.
add_filter('eStore_txn_payment_currency_symbol', 'override_eStore_txn_currency_symbol', 10, 2);
function override_eStore_txn_currency_symbol($currency_symbol, $payment_currency){
$currency_symbol = '';
return $currency_symbol;
}
Let me know how it goes.
Hi,
Is this still a valid solution, 4 years later?
Best regards,
H