- Edited
Hi i use woocommerce-currency-converter-widget by woocommerce.
By default the plugin use EUR and GPB and i would like to change them with currency symbols.
I tried this method
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'EUR': $currency_symbol = '€'; break;
}
return $currency_symbol;
}
but this changed the symbol only in products and not at the widget.
I talked with woo support and they didn't help me.
They need money for this (plugin is already paid)
Any solution?
Thanks