• Line 113

    $totals -> cart_contents_total = $totals -> cart_contents_total + round(($totals -> cart_contents_total*$extra_charges)/100);

    When using the round function you should specify the rounding precision:

    $totals -> cart_contents_total = $totals -> cart_contents_total + round(($totals -> cart_contents_total*$extra_charges)/100,2);

    That aside, the line should really just be:

    $totals -> cart_contents_total = $totals -> cart_contents_total * (1+($extra_charges/100));

    As WooCommerce handles rounding later down the way.

    http://wordpress.org/plugins/woocommerce-add-extra-charges-option-to-payment-gateways/

  • The topic ‘Precision Rounding Error’ is closed to new replies.