Viewing 1 replies (of 1 total)
  • Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there calebeaires,

    Hope you’re well today!

    Thanks for the suggestion, there is a filter in membership which you can use to add more locales to it. So adding something like this in the functions.php of your child theme should do the trick:

    add_filter('membership_gateway_locals', 'new_locales');
    function new_locales($locales){
    $locales['BO'] = __('Bolivia', 'membership');
    $locales['XYZ'] = __('XYZ', 'membership');
    return $locales;
    }

    Hope this helps ??

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)
  • The topic ‘Add more locales support to PayPal’ is closed to new replies.