Re: Fast and Easy Checkout for Zen Cart
I installed this module as instructed. In admin I enabled Fast and Easy Checkout, One Page Checkout, and Easy Login. Easy Login appears to be working, but when I add a product to the cart and go to Checkout, I am still going through the normal checkout process...as if Fast and Easy Checkout is not enabled or installed.
Any tips would be great.
the store is Sunset Growers
Thanks!
Re: Fast and Easy Checkout for Zen Cart
I really do appreciate the humungous time it must have taken you to develop this easy checkout, but....you leave us Hanging when you say:
TIPS:
FAST AND EASY CHECKOUT FOR ZEN CART IS ACTIVATED BY LOADING AN EXTRA_CONFIGURES FILE CALLED CHECKOUT.PHP BEFORE THE FILENAMES.PHP FILE
Can you PLEASE give us some very thorough baby talk steps as to what the heck you are saying? Do we copy the extra_configures file....and if so which one..there's 2 of them. Then...you say called checkout.php...which is it? Where and exactly how do we put either one of these files anywhere. What do you mean "before" filenames.php file?
So frustrating:no::shocking::frusty: Your response would be very much apprciated by all the other dopes like me who need to know
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ahaynes106
I installed this module as instructed. In admin I enabled Fast and Easy Checkout, One Page Checkout, and Easy Login. Easy Login appears to be working, but when I add a product to the cart and go to Checkout, I am still going through the normal checkout process...as if Fast and Easy Checkout is not enabled or installed.
Any tips would be great.
the store is
Sunset Growers
Thanks!
UPDATE:
Well call me stupid! I had uploaded everything to the site...except "javascript_check.php". :blush:
Working now.
Oh well, live and learn.
Re: Fast and Easy Checkout for Zen Cart
Well, I guess I am stupid!!! Are you saying that you have to upload each and every FILE AND FOLDER individually? I understood that we just have to upload the install file?.....so sick of this:no::huh:
Re: Fast and Easy Checkout for Zen Cart
I install this mod end don't work! :no:
Can somebodu please step-by-step explein hay to install end what is posible problem thet may not mod work!
Thenks :blush:
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
helpmeplease
Well, I guess I am stupid!!! Are you saying that you have to upload each and every FILE AND FOLDER individually? I understood that we just have to upload the install file?.....so sick of this:no::huh:
Just do what it says in teh instructions.
Quote:
Installation
Upload all files to their respective folders;
Rename /includes/templates/YOUR_TEMPLATE to your custom template name;
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;
That would be all files in the "required_files" folder you downloaded. I did not upload the "admin (optional)"
Open the install.sql in notepad and copied and pasted the content into the box at the location in step 3 above in my store admin. Then go to Fast and Easy Checkout under your stores admin configuration tab.
Good luck...workes for me.
Re: Fast and Easy Checkout for Zen Cart
Installed this module today and it looks really nice.
Issue:
When I tried a test order I get to the ?main_page=fec_confirmation page and all it says is:
Quote:
Your order is being processed, please wait...
This happens with either the PayPal Website Payments Pro Credit Card processing or with the PayPal option selected.
Any ideas on how long a customer should wait?
Test issue at: http://www.justmymusic.com/store/
Debugger says:
Quote:
[19-Feb-2010 07:55:38] PHP Fatal error: Cannot redeclare class order in /home/xxxx/xxxx/justmymusic.com/store/includes/classes/order.php on line 1032
Re: Fast and Easy Checkout for Zen Cart
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;
Re: Fast and Easy Checkout for Zen Cart
Hey Everyone.
I recently started working with Zen Cart and had the need for Fast and Easy Checkout.
I'm having an issue that I haven't been able to find in any of the forum posts.. Well, I've tried many searches without seeing an issue like mine.
Basically, I have Fast and Easy Checkout enabled (One Page Checkout is disabled), and the site properly redirects to the no_account screen upon going to checkout. It displays the customer billing information and accepts it without issue.
The issue is that, after I submit this information, it goes to 'Step 2', but it shows no details on the page. The URL string is: index.php?main_page=checkout&action=null
The screen shows 'Your Order Total:', then white space with no other details, and then the 'continue checkout' button. When I click on the button, it doesn't let me go forward as it's expecting me to select a payment option, but again, the page doesn't display anything for me to select.
I've made sure that the only payment module enabled is 'Credit Card - Offline Processing'.
So, I'm at a bit of a loss. Has anyone run in to this issue?
My credentials:
Zen Cart 1.3.8a
Database Patch Level: 1.3.8
Modules:
Simple SEO URL Manager
Cross Sell
FEC latest
Re: Fast and Easy Checkout for Zen Cart
I figured out what the issue is.
On this page:
includes/templates/template_default/templates/tpl_checkout_default.php
On line 36:
PHP Code:
<?php include(DIR_WS_TEMPLATE . 'templates/tpl_checkout_stacked.php'); ?>
Basically, that call wasn't pointing to the correct template that I'm using. By default it was trying to call the 'classic' template path.
So, I changed that line to this:
PHP Code:
<?php include($template->get_template_dir('tpl_checkout_stacked.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_checkout_stacked.php'); ?>
And it loaded the template.
Hopefully the rest of the process is smooth!