Re: Fast and Easy Checkout for Zen Cart
I experience this same problem from time to time on my shopping cart display. Its seems to be random when the shipping shows up.
I don't know if this is related, but I get the same "no refresh" when the customer lands on the home page after leaving the site. I have auto login installed and when the customer returns to my site it looks like they are not logged in. They must refresh the page to see the appropriate links (log off, etc.).
Sweet
www.sweetzouzou.com
Re: Fast and Easy Checkout for Zen Cart
I just found another issue. If I enter a bad credit card number, the appropriate error message is displayed and the customer is asked to try again. If a good cc number is then entered the page refreshs and the error message disappears but the cc info is lost. The customer must enter the cc info a second time to move on to order confirmation.
Also, when the confirm order is selected, the customer is taken to the check out page.
I am using authorize.net in testing mode.
Sweet
Re: Fast and Easy Checkout for Zen Cart
OK, I'm still trying this, but haven't found a way to make it work - yet.
The image in the default shopping cart is small, is that the size image you want? It looks to be a good size, but I can't seem to call it into the checkout page.
I think the answer is somewhere in the shopping cart page...
I'll look more later today
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Sweet ZouZou
I just found another issue. If I enter a bad credit card number, the appropriate error message is displayed and the customer is asked to try again. If a good cc number is then entered the page refreshs and the error message disappears but the cc info is lost. The customer must enter the cc info a second time to move on to order confirmation.
Also, when the confirm order is selected, the customer is taken to the check out page.
I am using authorize.net in testing mode.
Sweet
Install the latest files. I was having the same issue, which I detailed a few pages back. THe new files fixed the issue.
http://www.numinix.com/index.php?mai...roducts_id=760
many, many thanks to Nummix!!
Re: Fast and Easy Checkout for Zen Cart
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
Re: Fast and Easy Checkout for Zen Cart
Quote:
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 added additional shipping choices to mine and it works without any problems.
I wish I could be of more help... sorry :(
Re: Fast and Easy Checkout for Zen Cart
Quote:
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
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
osdude
many, many thanks to Nummix!!
Amen to that!! :smile: And to everyone that pitches in to make our e-commerce dreams come true! :bigups::hug:
Re: Fast and Easy Checkout for Zen Cart
Good job! It worked! :clap:
Thnks for the help lankeeyankee
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Sweet ZouZou
Good job! It worked! :clap:
Thnks for the help lankeeyankee
Great, I'm glad it fixed the problem! Please let me know if it makes the checkout_default page consistent with displaying the shipping.
Matt