Re: Fast and Easy Checkout for Zen Cart
Maybe this question has been answered before, but I couldn't find it in a search.
I installed Fast and Easy Checkout on a 1.5 version of Zen Cart. My site is poolcuesexpress .com/store1.5
On the login page, when I set the Show Shipping Address to False, the shipping address is not shown but the Shipping Same as Billing Checkbox is not displayed when it is set to True.
When the Show Shipping Address is set to True, the shipping address form is shown and the Shipping Same as Billing Checkbox is displayed if set to True. When the Shipping Same as Billing Checkbox is set to False it is not displayed.
I want to Shipping Address set to False to make the login page to be shorter, but I want the Shipping Same as Billing Checkbox to be displayed.
Any help would be appreciated.
Dave
Re: Fast and Easy Checkout for Zen Cart
-
-
When using the COWOA option, is there a way to add an optional create account field. Like so...
-
-
http://www.pazzle.co.uk/images/socia...ntoptional.png
Re: Fast and Easy Checkout for Zen Cart
Can anyone help, i've installed FEC and everything works except the coupon code when i type a code in and click update i get this,
Whoops! Your session has expired.
If you were placing an order, please login and your shopping cart will be restored. You may then go back to the checkout and complete your final purchases.
If you had completed an order and wish to review it, or had a download and wish to retrieve it, please go to your My Account page to view your order.
everything else works fine
Re: Fast and Easy Checkout for Zen Cart
I wouldn't bother pricey, iv'e had no response for 2 days now.
Guess we're on our own
Re: Fast and Easy Checkout for Zen Cart
Guess we are Inxie, ill just have a 3 page checkout don't think it will be off potential customers too much.
Re: Fast and Easy Checkout for Zen Cart
Maybe I missed it but has anyone gotten Fast and Easy Checkout to work with Ultimate SEO yet? I installed FAC and everything worked perfectly until I clicked on the checkout button to make a payment. Then I was met with a message that says, Processing please wait....... and nothing every happened.
Currently I only have Paypal Standard setup for the checkout process and the test user was not directed to the paypal checkout page. instead met with the "processing please wait" message.
I have the Ultimate SEO turned on.
Please let me know if you have any ideas guys. Have a kickasss day!
Re: Fast and Easy Checkout for Zen Cart
Quote:
I was met with a message that says, Processing please wait....... and nothing every happened.
A common issue...have you installed CJ Loader as per step 1 of the installation readme?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
pricey92
Can anyone help, i've installed FEC and everything works except the coupon code when i type a code in and click update i get this,
Whoops! Your session has expired.
If you were placing an order, please login and your shopping cart will be restored. You may then go back to the checkout and complete your final purchases.
If you had completed an order and wish to review it, or had a download and wish to retrieve it, please go to your My Account page to view your order.
everything else works fine
Which version of FEC are you trying to install?
Re: Fast and Easy Checkout for Zen Cart
I found the resolution to this question on Numinix.com . This is the link to the forum I read on Numinix: http://www.numinix.com/forum/viewtop...&t=4&start=855
Heres the answer if your too lazy to go to that website guys! Hope this helps anyone else that may have the same issue
You maybe missing the body onload function see below
Find in your template the tpl_main_page.php
includes/templates/YOUR_TEMPLATE/common/ folder (YOUR_TEMPLATE) is the actual name of your template
Code: Select all
<body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
Replace with
Code: Select all
<body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?><?php if(FEC_ONE_PAGE == 'true' && $_GET['main_page'] == 'fec_confirmation') echo ' onLoad="document.fec_confirmation.submit();"';?>>
Save file and re-upload BE SURE to backup your original tpl_main_page.php file
See if that helps
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
castigliajj
Maybe I missed it but has anyone gotten Fast and Easy Checkout to work with Ultimate SEO yet? I installed FAC and everything worked perfectly until I clicked on the checkout button to make a payment. Then I was met with a message that says, Processing please wait....... and nothing every happened.
Currently I only have Paypal Standard setup for the checkout process and the test user was not directed to the paypal checkout page. instead met with the "processing please wait" message.
I have the Ultimate SEO turned on.
Please let me know if you have any ideas guys. Have a kickasss day!
ANSWER
You maybe missing the body onload function see below
Find in your template the tpl_main_page.php
includes/templates/YOUR_TEMPLATE/common/ folder (YOUR_TEMPLATE) is the actual name of your template
Code: Select all
<body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
Replace with
Code: Select all
<body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?><?php if(FEC_ONE_PAGE == 'true' && $_GET['main_page'] == 'fec_confirmation') echo ' onLoad="document.fec_confirmation.submit();"';?>>
Save file and re-upload BE SURE to backup your original tpl_main_page.php file
See if that helps