Viewing 1 replies (of 1 total)
  • Hey RudolfFiedler,

    How are you doing today?

    This can’t be done out of a box but you should be able to add another currency to the list with some custom coding.

    To add your currency to Membership 2. Please try adding the following to your theme functions.php:

    add_filter( 'ms_model_settings_get_currencies', 'add_custom_currency' );
    function add_custom_currency($default_list) {
    $default_list['TRY'] = 'TRY - Turkey Lira';
    return $default_list;
    }

    This should add this currency to Membership 2.

    Hope this helps 🙂

    Cheers,
    Bojan

Viewing 1 replies (of 1 total)

The topic ‘Additional Currencies’ is closed to new replies.