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