rounding of commission rates

Posted in

Hi
I’ve added the rates for everything that is required but I can’t create 2.5% (0.025) it get rounded to 3% (0.03) why or where can I change that, I can’t find any setting to do so or is there code that I can change for this?

Please if somebody can assist me with this

Regards

One Response to rounding of commission rates

  1. George May 17, 2021 at 1:58 pm #

    Hi Petrus,

    Welcome back to the support forum.

    This occurs because the system by default will use two decimal digits but you can change that with the following filter hook snippet and allow ie 3 decimals.

    function affiliates_change_decimals_example( $decimals, $context ) {
    return 3;
    }
    add_filter( 'affiliates_referral_amount_decimals', 'affiliates_change_decimals_example', 10, 2 );

    FYI, the snippet should be placed in the functions.php file of your active theme – preferably – a child theme, or even better you can create a small plugin and install it on your site.

    Kind regards,
    George

We use cookies to optimize your experience on our site and assume you're OK with that if you stay.
OK, hide this message.

Affiliates · Contact · Jobs · Terms & Conditions · Privacy Policy · Documentation · Downloads · Useful Plugins · My Account

Share