Bug Description
The Order Total module low order fee is not working with Authorize Net. The low order fee will display properly during checkout, but it is not sent to Authorizenet.
Bug Fix
To fix this, either download the attached zip file and replace checkout_process.php with the file included in the zip, or manually edit the code making the following change:
Find this code:
And move it from below the Authorizenet mod code block, to just above it like this:Code:require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process();
That will fix it.Code:require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); //************************************************************ // Authorizenet ADC Direct Connection // Make sure the /catalog/includes/class/order.php is included // and $order object is created before this!!! if(MODULE_PAYMENT_AUTHORIZENET_STATUS) { include(DIR_WS_MODULES . 'authorizenet_direct.php'); } //************************************************************





LinkBack URL
About LinkBacks









Bookmarks