Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Andrew Lima

    (@andrewza)

    Hi @airathalitov,

    Thank you for getting in touch.

    You can set Paid Memberships Pro to support any currency, here is a code gist for that –
    https://gist.github.com/strangerstudios/84967fd8bc6de62d662f#file-pmpro_currencies_ruble-php

    After adding the code for your local currency, just navigate to Memberships > Payment Settings and select the currency from the “Currency” dropdown. Before updating, you will want to verify that your chosen payment gateway supports transactions in this currency, and be sure to review their fees currency conversion.

    Thread Starter Airat Halitov🔥

    (@airathalitov)

    @andrewza, thanks!

    function pmpro_currencies_ruble($currencies)
    {
    	$currencies['RUB'] = __('Russian Ruble (RUB)', 'pmpro');
    	return $currencies;
    }
    add_filter('pmpro_currencies', 'pmpro_currencies_ruble');

    I should to add this code in file functions.php of my child theme. Am i right?

    Will you add this currency by default in next updates?

    Plugin Author Andrew Lima

    (@andrewza)

    You’re welcome.

    That is correct you may add it to your functions.php file of your child theme.

    I am not sure if this will be added in the next update, I have added it as an issue to Github and the team at Paid Memberships Pro will look into this I’m sure.

    All the best! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Russian rubles support’ is closed to new replies.