I'm using FEC on ZC1.5.3.
For the shipping options at checkout, I would like only the shipping method to pass through to the order, not the shipping module name.
For example, instead of having "FedEx (FedEx Ground)" pass through as the shipping choice on the order, I would like to only see "FedEx Ground" get stored in the order details.
I had it set up this way on our 1.3.9 cart, but we did not use FEC. This is what I edited on my 1.3.9 cart, but it is not working when I apply those same changes to the 1.5.3 cart: http://www.zen-cart.com/showthread.p...-Rate-Best-Way and http://www.zen-cart.com/showthread.p...77#post1125677
I think the issue may be in includes/modules/pages/checkout/header_php.php, but I'm not sure.
Possibly here?
I'd appreciate any advice anyone can offer. Thanks!Code:if($bool) { $quote = $shipping_modules->quote($method, $module); } //eof tell a freand } else { // avoid incorrect calculations during redirect $shipping_modules = new shipping(); $quote = $shipping_modules->quote($method, $module); } if (isset($quote['error'])) { $_SESSION['shipping'] = ''; } else { if ( (isset($quote[0]['methods'][0]['title'])) && (isset($quote[0]['methods'][0]['cost'])) ) { $_SESSION['shipping'] = array('id' => $_SESSION['shipping'], 'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' (' . $quote[0]['methods'][0]['title'] . ')'), 'cost' => $quote[0]['methods'][0]['cost']); zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'fecaction=null', 'SSL')); } }



