This is a result of what may be a quirk in the FedEx module,
reported a couple months ago.
The following may help ...
You can change your site's template operation by editing your custom tpl_checkout_shipping_default.php file:
line 64:
Code:
// allows FedEx to work comment comment out Standard and Uncomment FedEx
// if ($quotes[$i]['id'] != '' || $quotes[$i]['module'] != '') { // FedEx
if ($quotes[$i]['module'] != '') { // Standard
Move the // from the 2nd line to the 3rd line, like this:
Code:
// allows FedEx to work comment comment out Standard and Uncomment FedEx
if ($quotes[$i]['id'] != '' || $quotes[$i]['module'] != '') { // FedEx
// if ($quotes[$i]['module'] != '') { // Standard
I've only done very basic research on this, as I have no way to test the module.
Bookmarks