Zen Cart Logo
Forums / All Other Contributions/Addons / Fast and Easy Checkout

Fast and Easy Checkout

Views: 550,606

Results 1,021 to 1,040 of 2,177
06 Sep 2010, 19:35
#1021
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Fast and Easy Checkout

khopek:

Make sure to remove ALL files and bit of code from your site. I was under the impression one was able to just disable FEC via Admin, so I did so...and had no sales for a week because it prevented customers from creating an account or checking out.:cry:
If you were unable to disable the module from the admin, you either
A) forgot to disable EASY SIGN UP AND LOGIN
or
B) have a hardcoded file in extra_configures which redirects to the checkout page

99% likely it was A. This module can be COMPLETELY disabled from the admin as long as it isn't hard-coded into your cart.

Anyways, Scott's issue is not with FEC. In fact he's not even using FEC, he's using FEAC. He's had 3 programmers other than Numinix look at his site and has wasted a couple of days getting them to determine that FEAC was the problem while continuing to ignore my advice that this is the result of an improper upgrade. Advice that was given to him for free when we fixed CSS JS Loader.

06 Sep 2010, 19:48
#1022
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

EZorb:

I will try to explain better. Fresh install of 1.3.9f and demo-database and 1.3.9f with all mods installed works great no problems. Now I need to have 1.3.8a database to work with new install 1.3.9f.

After changing configure.php files to match 1.3.8a database I installed all SQL patches on 1.3.8a database the ones that were already installed installer said so. Next ran UpDate database and patch level now says 1.3.9f. Now everything work except FEC. It has defaulted to orginal. So that is why I said it has to be something to do with the database. So the only thing I can think of is JS is not working with the updated database.
FEC uses auto_loaders to redirect the default pages to FEC pages. Turning off FEC disables these auto_loaders. Your best bet is probably to reinstall FEC to make sure none of these files were lost during your upgrade.

08 Sep 2010, 19:44
#1023
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

Low order is installed and configured, but it is not showing up in the cart and one page checkout.

08 Sep 2010, 21:08
#1024
ezorb avatar

ezorb

Zen Follower

Join Date:
Apr 2006
Location:
Midland TX
Posts:
426
Plugin Contributions:
0

Re: Fast and Easy Checkout

EZorb:

I will try to explain better. Fresh install of 1.3.9f and demo-database and 1.3.9f with all mods installed works great no problems. Now I need to have 1.3.8a database to work with new install 1.3.9f.

After changing configure.php files to match 1.3.8a database I installed all SQL patches on 1.3.8a database the ones that were already installed installer said so. Next ran UpDate database and patch level now says 1.3.9f. Now everything work except FEC. It has defaulted to orginal. So that is why I said it has to be something to do with the database. So the only thing I can think of is JS is not working with the updated database.

Problem Found

When you run the uninstaller I found even though it shows FEC has been removed only parts have been removed. I found the following was left installed, [INSERT INTO query_builder ( query_id , query_category , query_name , query_description , query_string ) VALUES ( '', 'email,newsletters', 'Permanent
Account Holders Only', 'Send email only to permanent account holders ', 'select customers_email_address, customers_firstname, customers_lastname from
TABLE_CUSTOMERS where COWOA_account != 1 order by customers_lastname, customers_firstname, customers_email_address');] When you try to install SQL patch it does not install any part of the patch because it think the patch is installed.

Remendy

I loaded the SQL patch into an editor and found the above to be line 6. I removed this line, and installed the SQL patch. This time the SQL installer installed 14 Statements and said the following was also installed.

Error ERROR: Cannot ADD column dropdown because it already exists.
Error ERROR: Cannot ADD column gift_message because it already exists.
Error ERROR: Cannot ADD column checkbox because it already exists.
Error ERROR: Cannot ADD column COWOA_account because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot ADD column COWOA_order because it already exists.
Error ERROR: Cannot insert configuration_key "ACCOUNT_TELEPHONE" because it already exists

Tested

All works fine now – this is a great mod that I would rate as a must have #1

Need to know

Why is code being left behind? Is it due to not included in unstaller or is there something wrong on the database server and my host need to fix.

09 Sep 2010, 01:30
#1025
gomlers avatar

gomlers

Zen Follower

Join Date:
Aug 2008
Posts:
139
Plugin Contributions:
0

Re: Fast and Easy Checkout

First of all - thanks again for one of the best mods out there! It really is fantastic!

I know that customers can checkout without an account, and then they don't need a password.

But I still want my customers to open an account - so I use FEC with easy login and 1 page checkout.

Since you have managed to bypass both the password and password-confirmation in your COWOA module, i wondered if you could tell me how in the world I can skip the password-confirmation when opening an account.. No matter what I do, it won't work...

I have removed the inputfield (confirmation) from tpl_modules_create_account.php and removed confirmation-lines from modules/create_account.php.

What happens, is that when a customer doesn't fill out the rest of the form after the "rules" all the Javascript Error Alerts are gone! - instead they are shown as messagestacks on the top of the page, written out by PHP, which causes the page to reload, and hence - all the input fields loose their values, and the customer must fill them out once again..

Was this understandable?

Summary:
I want to drop the password-confirmation when creating an account, but still show JS-alerts if something else is missing from the form.

Can you help?

09 Sep 2010, 04:03
#1026
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

Gomlers:

First of all - thanks again for one of the best mods out there! It really is fantastic!

I know that customers can checkout without an account, and then they don't need a password.

But I still want my customers to open an account - so I use FEC with easy login and 1 page checkout.

Since you have managed to bypass both the password and password-confirmation in your COWOA module, i wondered if you could tell me how in the world I can skip the password-confirmation when opening an account.. No matter what I do, it won't work...

I have removed the inputfield (confirmation) from tpl_modules_create_account.php and removed confirmation-lines from modules/create_account.php.

What happens, is that when a customer doesn't fill out the rest of the form after the "rules" all the Javascript Error Alerts are gone! - instead they are shown as messagestacks on the top of the page, written out by PHP, which causes the page to reload, and hence - all the input fields loose their values, and the customer must fill them out once again..

Was this understandable?

Summary:
I want to drop the password-confirmation when creating an account, but still show JS-alerts if something else is missing from the form.

Can you help?
All of this is standard in FEC. Make sure you are using version 1.8.4.

09 Sep 2010, 15:34
#1027
gomlers avatar

gomlers

Zen Follower

Join Date:
Aug 2008
Posts:
139
Plugin Contributions:
0

Re: Fast and Easy Checkout

numinix:

All of this is standard in FEC. Make sure you are using version 1.8.4.

Is there an admin option in FEC to drop the Password-confirmation?

10 Sep 2010, 00:09
#1028
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

Gomlers:

Is there an admin option in FEC to drop the Password-confirmation?
This is default to Zen Cart and we strongly recommend keeping it if you plan to offer permanent accounts.

Otherwise, just use COWOA and you won't need a password at all.

12 Sep 2010, 07:22
#1029
ubique17 avatar

ubique17

New Zenner

Join Date:
Aug 2010
Location:
BrisVegas
Posts:
18
Plugin Contributions:
0

Re: Fast and Easy Checkout

Really loving the look and feel to this mod, but have one aesthetic problem I can't resolve - in the first page of the checkout, in the "shopping cart contents" totals area, the shipping totals are coming up as 0.00. There is no text to indicate what the 0.00 actually is as a user, (ie, lists subtotal, then the 0.00, then the tax, then total) so it;s not the end of the world, but it would be great if I could remove this line altogether. Having a blonde day, and can't find this anywhere?
Thanks!

12 Sep 2010, 09:57
#1030
hc1501 avatar

hc1501

New Zenner

Join Date:
Jan 2009
Posts:
64
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi All !!

I have just installed FEC and it is really working great. But I need the shipping telephone number field to be added. Can anyone help me out how can this be done???

Thanks in advance,
hc

14 Sep 2010, 15:15
#1031
hc1501 avatar

hc1501

New Zenner

Join Date:
Jan 2009
Posts:
64
Plugin Contributions:
0

Re: Fast and Easy Checkout

please someone help me !!!! reply please...

15 Sep 2010, 06:45
#1032
orange_juice avatar

orange_juice

Zen Follower

Join Date:
Apr 2009
Location:
Athens, Europe
Posts:
125
Plugin Contributions:
0

Re: Fast and Easy Checkout

But I need the shipping telephone number field to be added. Can anyone help me out how can this be done???

You need to use a file comparing tool like winmerge or meld. Then, you should compare the telephone number module's files against the original zen-cart files to see which lines are modified.(they are not many)

After that you should modify the same lines in the same way in the FEC module's files.

Kind regards,
orange_juice

16 Sep 2010, 03:28
#1033
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

This is important and I do not mean to double post but my problem has not been responded to. I have the low order fee installed and setup correctly. But with the one page checkout it is not showing the low order fee. Can someone help me with this issue so I can launch my new site? Hope to hear a reply shortly thank you!

17 Sep 2010, 04:42
#1034
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

ryanb4614:

This is important and I do not mean to double post but my problem has not been responded to. I have the low order fee installed and setup correctly. But with the one page checkout it is not showing the low order fee. Can someone help me with this issue so I can launch my new site? Hope to hear a reply shortly thank you!
Are you saying that disabling FEC allows the order fee to display properly?

17 Sep 2010, 14:20
#1035
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: Fast and Easy Checkout

numinix:

Are you saying that disabling FEC allows the order fee to display properly?

It actually isn't showing when i disable FEC, I know I edited some files but I dont believe I removed anything. What file would that be in?

22 Sep 2010, 01:45
#1036
sports_guy avatar

sports_guy

Totally Zenned

Join Date:
Apr 2007
Location:
Dayton, Ohio
Posts:
682
Plugin Contributions:
0

Re: Fast and Easy Checkout

Love fast and easy checkout. One problem it hangs on this payment confirmation page: http://www.leafnovelties.com/fec_confirmation/fecaction/process

Here is the last page that I see: ```
Your order is being processed, please wait...

 
It does not process just stays on this page permanently. When I look in the admin panel the orders are not there. Any ideas?
25 Sep 2010, 03:45
#1037
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Fast and Easy Checkout

sports guy:

Love fast and easy checkout. One problem it hangs on this payment confirmation page: http://www.leafnovelties.com/fec_confirmation/fecaction/process

Here is the last page that I see: ```
Your order is being processed, please wait...

Firstly, try not rewriting this URL.  If you are unable to stop your SEF URLs module from rewriting certain pages, try disabling it and if that corrects the issue, then you would need to decide between the checkout system or your current SEF URLs module. 

Check the error console for JavaScript errors.

Check the Live HTTP Headers to see what is happening during the submission process.
28 Sep 2010, 03:16
#1038
lindasdd avatar

lindasdd

Zen Follower

Join Date:
Jun 2007
Posts:
474
Plugin Contributions:
0

Re: Fast and Easy Checkout

ryanb4614:

It actually isn't showing when i disable FEC, I know I edited some files but I dont believe I removed anything. What file would that be in?

Definitely sounds like a problem with that module and not FEC. Try doing a file compare between your server files and a fresh unzipped version of Zen on your hard drive.

I would say "it is XYZ file", but there is more than a couple files involved so there is no way to tell which one is the problem.

-lindasdd

06 Oct 2010, 17:14
#1039
hc1501 avatar

hc1501

New Zenner

Join Date:
Jan 2009
Posts:
64
Plugin Contributions:
0

Re: Fast and Easy Checkout

Hi All !!

I have just installed FEC and it is really working great. But I need the shipping telephone number field to be added. I am a newbie can numinix or anyone help me out how can this be done step by step ???

I hope anyone helps

Thanks in advance,
hc

06 Oct 2010, 19:13
#1040
ezorb avatar

ezorb

Zen Follower

Join Date:
Apr 2006
Location:
Midland TX
Posts:
426
Plugin Contributions:
0

Re: Fast and Easy Checkout

hc1501:

Hi All !!

I have just installed FEC and it is really working great. But I need the shipping telephone number field to be added. I am a newbie can numinix or anyone help me out how can this be done step by step ???

I hope anyone helps

Thanks in advance,
hc

The customer phone number is listed on the Admin order processing page and it is also on the Sale order email that you receive.
I have been using ZenCart for many years now and have not found a need for telephone number in the shipping address. I have seen several make this request and was wondering what is the need of this phone number. Would you share your need for it with us?

Thanks, Larry