
Originally Posted by
Sweet ZouZou
Thx for the advice, but the new files didn't work for me ;-(. Do you know what was changed and which file to refresh the page to show the shipping cost?
Thx Sweet
I think I found a fix for the UPS only non-refresh problem. If there are any other shipping modules that are also experiencing a non-refresh to automatically show the shipping in the cart total in checkou_default when landing on the page:
go to modules/pages/checkout/header_php.php
around line 159 find this:
Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) )
$_SESSION['shipping'] = $shipping_modules->cheapest();
and change it to:
Code:
if ( !$_SESSION['shipping'] || ( $_SESSION['shipping'] && ($_SESSION['shipping'] == false) && (zen_count_shipping_modules() > 1) ) ) {
$_SESSION['shipping'] = $shipping_modules->cheapest();
zen_redirect(zen_href_link(FILENAME_CHECKOUT, 'action=null', 'SSL'));
}
Please try this and let me know if it works.
Matt
Bookmarks