Re: Fast and Easy Checkout for Zen Cart
Hi Jay,
Not just the orange, but all of the code in the blocks I provided. If you go from the line indicated, start selecting at the beginning of <fieldset.... all the way through the closing tag for that fieldset element (as shown in the code blocks above) than just replace with everything in the blocks I marked "change to:" . Make sure you do it for both sections (shipping and billing) both are included in the code changes above.
I can't emphasize enough though, back up your files before doing any modification to the code. This is only commenting out code, not removing it, but always take the safe route :yes:
Re: Fast and Easy Checkout for Zen Cart
ok mate I will try this but going to do this tomorrow as feel as rough as a badgers ######, thanks for your help mate, very much appreciated :D
Re: Fast and Easy Checkout for Zen Cart
Litepockets,
yet again you are a true legend, it has got rid of the addresses and now just says delivery information and payment information, address will be done through paypal and if signed up through my shop on there.
All the info you have given me should be used as a sticky imo... great help :D:D:D
Re: Fast and Easy Checkout for Zen Cart
Glad I was able to help :)
Re: Fast and Easy Checkout for Zen Cart
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
jasmel
Still not working: blank page on fec_confirmation
Additional notes: Should update the instructions as follows...
Installation:
1. Upload all files to their respective folders;
2. Rename /includes/templates/YOUR_TEMPLATE to your custom template name;
3. Rename /includes/modules/YOUR_TEMPLATE
4. Rename /includes/languages/english/YOUR_TEMPLATE
5. Rename /admin/ if your have changed your admin folder name
6. Copy and paste the install.sql file into ADMIN->TOOLS->INSTALL SQL PATCHES to be able to activate or deactivate the one-page checkout feature included with Fast and Easy Checkout for Zen Cart;
Hi jasmel~ Thanks for your input. You've lost me already on step 1 !! How do I upload a file off my computer to a SPECIFIC folder when all I'm doing is going to the admin panel, clicking on TOOLS and then using the INSTALL SQL PATCHES?
also lost on step 5.:cry:
Thanks so much
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
xzistance
I think I figured out the issue. I only had 'Checkout Without Account Only' marked as 'true' and not 'Checkout Without Account' as well.
I suppose the configuration confused me, but it seems that it'll allow multiple entries with the same email address in to the customers tbl as long as both of those are marked 'true'.
If they aren't, you'll get that account validation error.
Ok, really DUMB DUMB question....but can you help me find where you are referring to when you say 'Checkout Without Account Only' marked as 'true' and not 'Checkout Without Account' as well. :frusty: :wacko:
Re: Fast and Easy Checkout for Zen Cart
Sounds like a great mod and hopefully what I'm looking for, but after installing the mod I get a blank screen on the browser when I click on the checkout button. I followed the steps exactly. I restored, the store and sql, and did it again with the same results. Any ideas/help are greatly appreciated. Thank you in advance!
Re: Fast and Easy Checkout for Zen Cart
Possible solution if you have this problem:
1062 Duplicate entry 'Permanent Account Holders Only' for key 'query_name'
in:
[INSERT INTO zen_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');]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
For anyone having a problem with this message, and NOT posting HOW they solved it (thanks a LOT guys), this is what I did, and it SEEMS to have worked (no guarantees for anyone else....I'm just trying to post what helped me).
numinix says "remove the first 4 lines or so". I removed 8 LINES, and its basically worked. So where it starts with:
"SET @configuration_group_id=0;" .... thats where I started my SQL edit. So far it's worked, but I don't have high hopes of this working
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Sevenhelmets
Possible solution if you have this problem:
1062 Duplicate entry 'Permanent Account Holders Only' for key 'query_name'
in:
[INSERT INTO zen_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');]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
For anyone having a problem with this message, and NOT posting HOW they solved it (thanks a LOT guys), this is what I did, and it SEEMS to have worked (no guarantees for anyone else....I'm just trying to post what helped me).
numinix says "remove the first 4 lines or so". I removed 8 LINES, and its basically worked. So where it starts with:
"SET @configuration_group_id=0;" .... thats where I started my SQL edit. So far it's worked, but I don't have high hopes of this working
It probably will since all this "error" means is that you are trying to insert a value into the database that already exists.. If it already exists then you don't need to insert it a second time..