Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @aridaniv

    Hope you’re doing well!

    To add another currency please use the code below:

    add_filter( 'ms_model_settings_get_currencies', 'membership_available_currencies_cb' );
    function membership_available_currencies_cb( $arr ){
    	$arr['EUR'] = 'EUR - Euro €';
    	return $arr;
    }

    Modify this line and add new custom currencys:
    $arr['EUR'] = 'EUR - Euro €';

    Add the code at the bottom of functions.php file of your theme. Make sure that you have a Child Theme created, otherwise the changes will be lost after a theme’s update.

    Hope this helps!

    Cheers,
    Nastia

    Thread Starter Aridani

    (@aridaniv)

    Hai Nastia,

    Awesome

    Thankyou verymuch!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add more currency’ is closed to new replies.