Don7Qf Posted April 27, 2005 Posted April 27, 2005 Hello all. My handling fee is not calculated at checkout for USPS shipping. It's enabled in Admin>Modules>Shipping>USPS but not added to the total. Any ideas? Quote
chimol Posted July 5, 2011 Posted July 5, 2011 (edited) I know this is an OLD post, but I'm having the same issue...anyone got an idea, or know what may be causing the issue? Edited July 5, 2011 by chimol Quote Steve I appreciate all the help that everyone on this site has given me!
KDM Posted July 6, 2011 Posted July 6, 2011 I know this is an OLD post, but I'm having the same issue...anyone got an idea, or know what may be causing the issue? Simple question. You did set the handling fee in admin? If you did then this is where the handling fee is processed in usps.php if (($method == '' && in_array($type, $this->types)) || $method == $type) { if (strpos($type, "Flat Rate")) $type_flat = $type . ', subject to verification'; else $type_flat = $type; $methods[] = array('id' => $type, 'title' => $type_flat, 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes); } } If your fee is set and the line with "MODULE_SHIPPING_USPS_HANDLING" has not been modified then it should work. NOTE: Above is set to not adding a handling fee to a flat rate shipping fee. If you want to charge a handling fee for that service than some additional coding would need to be done. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.