Hello,
Thank you for reporting your issue.
Can you please tell me which version of our plugin are you using?
Information how to add more currencies you can find in the link below:
https://wpml.org/documentation/related-projects/woocommerce-multilingual/multi-currency-support-woocommerce/
Hi, thanks.
Last version.
The link you posted does not add CUSTOM Currency. (UYU)?
Hello,
Thank you for your reply.
You will be able to use a Custom Currency in WooCommerce Multilingual if you add it to you WooCommerce.
To add a custom currency in WooCommerce 2.0+, copy and paste this code in your theme functions.php file and swap out the currency code and symbol with your own.
After saving changes, it should be available from your WooCommerce settings and in Multiple currencies.
add_filter( 'woocommerce_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['ABC'] = __( 'Currency name', 'woocommerce' );
return $currencies;
}
add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);
function add_my_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'ABC': $currency_symbol = '$'; break;
}
return $currency_symbol;
}
Afte
Please let me know if this solves your issue.
Regards,
Maciej
Hello there!
Since it has been about a month to hear you, I am remarking this as a resolved.
If you need further assistance please inform us!
I’m sorry but I think you do not understand.
The currency has already been declared with WooCommerce jetpack.
We are talking about the rate, the conversion makes WooCommerce WPML extention.
It is done manually? It is the stone age.
See: http://prntscr.com/80s3x8
Thank you very much for your reply.
We have plans for automatic rate currency conversion but you should wait for a little.
Our next big update will come with very beautiful changes. After that I suppose we will take care of this.
So please be patient and always give your feedback which is appreciated very much.
I will keep a note to inform you when we have news about that.
Thank you very much