Replies: 0
I could seriously cry right now … I’ve been working for weeks on an adult toy store and I was having issues with the shipping in Woo-commerce, so installed a shipping plug-in that I thought would help make it easier. Instead, it turned all currency into the Euro symbol regardless of country.
I disabled it and it still wasn’t fixed.
SO … I searched for a fix (or one that I could at least change it to the correct currency, which is $) and when I tried to update the functions file it timed out and now I’m left with nothing. 🙁
This was the code I used: `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 = ‘Eur ‘; break;
}
return $currency_symbol;
}`
and I have no idea what the plug-in was called because I’d looked at so many. I know you could set shipping zones and shipping rates according to weight and/or amount spent.
I apologize if this is in the wrong section, any advice or direction would be much appreciated!