Your cart is currently empty!
rounding of commission rates
—
by
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
Posted in Affiliates Pro
Comments
One response to “rounding of commission rates”
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