What all has to be done to intergrate google checkout with fec?
Printable View
What all has to be done to intergrate google checkout with fec?
I noticed that the function updateForm() in /includes/templates/Your_Template/jscript/jquery/jquery_checkout.php won't be loaded automatically, because the website won't be refreshed when I checked another USPS shipping option. So I changed file name jquery_checkout.php to jscript_checkout.php and put it into /includes/modules/pages/checkout/ then it works! Even though issue has been solved, I am still wondering why? any words would be appreciated!
I have fast and easy checkout working the only problem is at the checkout page, click on the change shipping address or change billing address... when the grey box opens up the loading screen just keeps circulating and never does anything, any ideas?
Fixed about problem, it was with my seo mapping. BIG problem. 3 customers cannot checkout when they use the safari browser, the click "confirm order" and it goes to a blank screen. And I am not recieving the order. Please advise.
Hello I have just launched my new site, 5 orders were lost. I followed up with the customers (using recover cart) and they reported they are using apple computers. When they hit confirm order the screen goes blank. On my end I am not seeing any orders and their credit cards are not being charged. So there is an compatibility error with FEC and safari anyone know of a fix?
Moderator's note - separate threads merged here. Please don't post in multiple places.
Add this to application_top
Code://add page names that you want to disable left and right columns
$center_column_only = array('checkout'); // add any other page names here separated by commas, no spaces
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,$center_column_only) ) {
$flag_disable_right = false;
$flag_disable_left = true;
}
Okay for all who is having problems with the Shipping and Billing button not working, I figured out why mine wasn't working. It had a problem with an SEO addon I installed from CEON.
CEON_URI Mapping... Here's the fix:
Login to admin then go to Modules --> Ceon URI Mapping (SEO) Config
Scroll down to the bottom to "Excluded Files"
and put in: /fec/fec_change_new_address.php
That will solve the problem with the change shipping and billing address buttons not working! =)