hello,
I try to install fast adn easy checkout, but do i need to install all the
sql statements into the database (update_1_0_5.sql till upgrade_1_11_2.sql)
regards,
Cees
hello,
I try to install fast adn easy checkout, but do i need to install all the
sql statements into the database (update_1_0_5.sql till upgrade_1_11_2.sql)
regards,
Cees
I'm not sure where to start with the problem, so I was hoping someone could lead me in the right direction. I have FEC 1.15.3 installed on Zen Version 1.5.4 and another site running 1.5.3. It works great except for one major problem, when registering an account, it does not save the shipping address. The only way for a customer to specify a separate shipping address is to create the account, then go into their address book and add another address. Needless to say, it's causing some problems when people go through their order confirmations too quickly and don't notice that the address didn't save.
Sites
af-company.com
valuelogs.com
Thanks in advance!
Thanks, Colleen
www.af-company.com
To err is human, but to really foul things up requires a computer. Farmers' Almanac, 1978
Hi
I have a fresh install of zen cart 1.5.4 with the Tableau template version 1.6.9. I am preparing to install fast and easy checkout. There are several files in /includes/templates/tableau/templates which both tableau and FEC write to. I don't want to break the responsiveness of the template. Will FEC work using the shared files in /includes/templates/tableau/templates? IE: can I just leave these files as installed by the Tableau template and not upload the corresponding files from the FEC module?
tpl_checkout_confirmation_default.php
tpl_checkout_success_default.php
tpl_fec_confirmation_default.php
tpl_login_default.php
tpl_modules_create_account.php
thanks
Last edited by buildingblocks; 13 Nov 2015 at 12:36 AM.
Typically I replace those files (although they are very similar) and then since FEC isn't responsive "out of the box" I do something like this
Add the following stylesheets (they should be in the auto_loaders from FEC):
includes/templates/YOUR_TEMPLATE/css/auto_loaders/create_account_overrides.css
includes/templates/YOUR_TEMPLATE/css/auto_loaders/fec_confirmation_overrides.cssHTML Code:@media screen and (max-width: 768px){ .fec-easy-sign-up .fec-col-left, .fec-easy-sign-up .fec-col-right{ width: 100%; } .fec-cl-left, .fec-cl-right{ width: 100%; border-right: 0px; margin-right: 0px; padding-right: 0px; } }
includes/templates/YOUR_TEMPLATE/css/auto_loaders/fec_confirmation_overrides.cssHTML Code:@media screen and (max-width: 768px){ .fec-easy-sign-up .fec-col-left, .fec-easy-sign-up .fec-col-right{ width: 100%; } .fec-cl-left, .fec-cl-right{ width: 100%; border-right: 0px; margin-right: 0px; padding-right: 0px; } }
Also typically I will change the default red buttons to a medium to light shade of green. We want customers to "go" through checkout not "stop"HTML Code:@media screen and (max-width: 768px){ .fec-easy-sign-up .fec-col-left, .fec-easy-sign-up .fec-col-right{ width: 100%; } .fec-cl-left, .fec-cl-right{ width: 100%; border-right: 0px; margin-right: 0px; padding-right: 0px; } }
Another note about Tableau / FEC in the auto_loaders
I usually change all the auto-loaders to load the jquery from the CDN and you need to make sure your only loading ONE jquery.
awesome bislewl! Thank you very much!
I am using Zen Cart 1.5.0 and FEC version 2.1.4 I am using for Modules Payment -(Ceon Manual Card v3.0.0) Ceon URI Mappings Manager, Ceon URI Mapping (SEO) Config.
1. A customer can place an order without issue when checking out as a guest unless they already have an account but decided they didnt want to log in that day. The cart rejects their order if the email is the same as what is in their account.
2. If they try to login with their password, they are denied because the cart says the email and or password is not valid.
3. If they request a new password via I forgot my password, a new password is sent, however it too is rejected when the customer tries to log in. Many jsut give up and call us or they go order somewhere else.
I have searched for solutions and have not found any. Perhaps I missed something in the 200 + ages of threads. I did find something I could try but would want advice to make sure that they are the correct steps for my situation.
From Silverphp.com
I am a bit nervous about messing with the database even with a backup especially this time of the year. Can anyone make any suggestions? Thanks in advance.If you are a Zen Cart user and seeing this error (“Error: Sorry, there is no match for that email address and/or password”) while error then no wonder you are also using Integrated Checkout Without Account (COWOA) which has some issue with database and login query.
I was able to fix this error and posting solution here so that you can be able to fixed this without wasting your valuable time.
Step 1: Repair Database issue
Run these 2 queries from PHPMyadmin:
Code:ALTER TABLE customers CHANGE COWOA_account COWOA_account VARCHAR( 64 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0'; UPDATE customers c, ( SELECT customers_id FROM customers WHERE COWOA_account = 1 AND customers_email_address NOT IN ( SELECT DISTINCT(customers_email_address) FROM customers WHERE COWOA_account = 0 ) GROUP BY customers_email_address ) t SET c.COWOA_account = 0 WHERE c.customers_id = t.customers_id;
Step 2: Update login query for existing users
1. Open file in editor: “\includes\modules\pages\login\header_php.php”
2. Search $check_customer_query and you’ll see “AND COWOA_account != 1″ as a part of query
3. Commend OR remove it: “/* AND COWOA_account != 1 */ ” (without quotes).
Save file and try to login again, it would work like charm.
I am still working on this. In the admin I have the following settings: I will also note I just changed the Guest check out settings to show just the guest checkout instead of both options of logging in or guest checkout. Users still cannot checkout as a guest if they have an account.
![]()
Still pulling hair out as this is affecting my business in a bad way. Thanks again for anyone who can help.
I've installed this module before with no problems, however I'm trying to reinstall it now on another site, and there seems to be no "install.sql" file with the package. Am I missing something?
Thanks, Colleen
www.af-company.com
To err is human, but to really foul things up requires a computer. Farmers' Almanac, 1978
Sorry for bring up an old thread...
The above sounded like just what i was after, but i could not get it to work...
in the end, i ended up editing
includes\classes\observers\class.esl.php
I changed...
to this...Code:function update(&$class, $eventID, $paramsArray) { if ((FEC_EASY_SIGNUP_STATUS) == 'true') { // redirect to ESL zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL')); } }
Added the && ($isMobile) to the if statement to check before redirecting to Easy Signup and LoginCode:function update(&$class, $eventID, $paramsArray) { if ((FEC_EASY_SIGNUP_STATUS) == 'true' && ($isMobile)) { // redirect to ESL zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL')); } }
and as far as i can tell, she is working...
http://www.nzlw.co.nz
Let me know your thoughts...
Bookmarks