• Resolved vieradel

    (@vieradel)


    First I think WPML should have the option of including custom currency.
    A reader with yahoo finance rate.
    If any plugin is used to add custom currency must be added manually after the rate. It is very mechanical, it should be automatic.
    After the converted value wants to send to paypal as USD but with the value multiplied by the rate.
    —–
    I clarify, I had to declare UYU with another plugin. The store is set to USD because the products are purchased in USD. But we see them in UYU. So far so perfect.
    When going out with paypal what I said before. The value of UYU takes as USD

    https://www.ads-software.com/plugins/woocommerce-multilingual/

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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/

    Thread Starter vieradel

    (@vieradel)

    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

    Plugin Contributor Andreas Panag

    (@andrewp-2)

    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!

    Thread Starter vieradel

    (@vieradel)

    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: https://prntscr.com/80s3x8

    Plugin Contributor Andreas Panag

    (@andrewp-2)

    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

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Custom Currency’ is closed to new replies.