Currency Issue

Hi,

We have purchased the affiliates pro plugin and we do not see a South African Rand (ZAR) currency option


Comments

One response to “Currency Issue”

  1. Hi,

    For currencies that are not already included, please use the following filter: affiliates_supported_currencies

    Here is an example that you can either place in your current theme’s functions.php (using a child theme is recommended so that the changes are not overwritten if the parent theme is updated) – alternatively you could also place the code in its own plugin:

    add_filter( 'affiliates_supported_currencies', 'affiliates_supported_currencies_zar' );
    function affiliates_supported_currencies_zar( $currencies ) {
        $currencies[] = 'ZAR';
        return $currencies;
    }
    

    I hope this helps but please let me know if you have any questions or need further help with it.

Share