• Resolved pablohpbh

    (@pablohpbh)


    Atualmente o Plugin n?o tem suporte a cryptomoeda Monero (XMR), nas op??es de moedas do plugin. Também n?o vi ninguém solicitando no suporte, por este motivo abri este tópico para solicitar que incluam a cryptomoeda Monero também na base de moedas suportadas pelo plugin.

Viewing 1 replies (of 1 total)
  • Plugin Support angelagrey

    (@angelagrey)

    Hi,

    Thank you for reaching out to us.

    You may use the code below to add currency. Please regard this instruction for where and how to add this code.

    But I’m not so sure about the exchange rate though, because normally the financial sources don’t have crypto currency. Please check that when you decide to add currency.

    add_filter( 'woocommerce_currencies', function ( $currency ) {
    	$currency['XMR'] = esc_html__( 'XMR', 'woo-multi-currency' );
    
    	return $currency;
    } );
    
    add_filter( 'woocommerce_currency_symbols', function ( $symbols ) {
    	$symbols['XMR'] = 'XMR';
    
    	return $symbols;
    } );

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Monero (XMR)’ is closed to new replies.