For some strange reason, the cart seem to be stuck on step 2 during the checkout process, i am using paypal and it does not go onto step 3
For some strange reason, the cart seem to be stuck on step 2 during the checkout process, i am using paypal and it does not go onto step 3
Do you have your paypal module restricted to certain zones?
what payment options are showingon your checkout-payment page ?
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
just paypal showing by itself, but i think the problem lies with the advertizing tracker and the insert which you have to put in
"In includes\modules\pages\checkout_confirmation\header_php.php
Find:
$_SESSION['comments'] = zen_db_prepare_input($_POST['comments']);
Below this line add:
This causes some problem as when i remove this from the header, my checkout works.PHP Code:// BEGIN ADDITIONS - if no advertizer has been selected, show an error and force them to select where they saw our ad - JTD
$_SESSION['advertizers'] = zen_db_prepare_input($_POST['advertizers']);
// Note: If you don't want to force customers to make a selection, simply comment out the next two lines of code...
if ($_SESSION['advertizers'] == NULL)
$messageStack->add_session('checkout_payment', ERROR_NO_ADVERTIZER_SELECTED, 'error');
// END ADDITIONS - JTD"