Page 1 of 2 12 LastLast
Results 1 to 10 of 2177

Hybrid View

  1. #1
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,569
    Plugin Contributions
    74

    Default Re: Fast and Easy Checkout for Zen Cart

    Follow the instructions in the documentation. You've skipped a step. But don't worry, it's very common and I often forget to do it as well!

  2. #2
    Join Date
    Nov 2007
    Posts
    141
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I solved my problem by comparing the original file from the default template directory with my current file using winmerge then inserted the missing code.

    Thx Sweet

  3. #3
    Join Date
    May 2005
    Location
    Bath, Somerset
    Posts
    1,053
    Plugin Contributions
    3

    Default Re: Fast and Easy Checkout for Zen Cart

    Just a couple of little code suggestions for the next release. Rather than editting the tpl_main_page file, could you add the following code to the includes/modules/pages/checkout_confimation/header_php.php file, right at the end, after the breadcrumb definitions
    Code:
    	if (FEC_ONE_PAGE == 'true' && FEC_CHECKOUT_CONFIRMATION_TEXT_SWITCH == 'true') {
    	  $za_onload_array[] = "document.checkout_confirmation.submit();";
    	}
    This will automatically add the javascript to the body tag on load.

    Also, it is worth noting here, that if a customer has javascript disabled, which is less common, but still possible with today's users, this page will never submit. To get round this, it may be worth also changing the tpl_checkout_confirmation_default file as follows:
    Code:
    <?php if (FEC_ONE_PAGE == 'true' && FEC_CHECKOUT_CONFIRMATION_TEXT_SWITCH == 'true') { 
    	echo '<div style="text-align:center; color:#ff0000; font-weight:bold; padding-top:30px;">' . FEC_CHECKOUT_CONFIRMATION_TEXT . '</div>';
    ?> 
    <div class="centerColumn" id="checkoutConfirmDefault">
    <?php } else { ?> 
    	<div class="centerColumn" id="checkoutConfirmDefault">
    <?php } ?>
    CHANGE TO
    Code:
    <?php if (FEC_ONE_PAGE == 'true' && FEC_CHECKOUT_CONFIRMATION_TEXT_SWITCH == 'true') { ?> 
    <script type="text/javascript">
    document.write("<style>#checkoutConfirmDefault { visibility:hidden; }</style><div style=\"text-align:center; color:#ff0000; font-weight:bold; padding-top:30px;\"><?php echo FEC_CHECKOUT_CONFIRMATION_TEXT; ?></div>");
    </script>
    <?php } ?>
    <div class="centerColumn" id="checkoutConfirmDefault">
    This will hide the page if hide page is selected in the admin settings, AND javascript is enabled. If Javascript is disabled, then the standard page is still displayed.

    These have been tested in FireFox, IE 6 & 7 but should be tested in all browsers before adding the code to this module.

    Hope these help.

    Absolute

  4. #4
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,569
    Plugin Contributions
    74

    Default Re: Fast and Easy Checkout for Zen Cart

    Absolute, how about the page redirects that use javascript when a shipping rate is changed?

  5. #5
    Join Date
    May 2005
    Location
    Bath, Somerset
    Posts
    1,053
    Plugin Contributions
    3

    Default Re: Fast and Easy Checkout for Zen Cart

    These are a little harder to code for, as here you actually need the page to submit, before you can show the price again. One possibilty is to have a hidden variable in form, which is the current shipping selection. When the form is submitted, if the hidden and visible variables are different, then you know the shipping method has been changed, and therefore you need to show the updated cart price first.

    One thing to remember here though is that if they don't have java, they will still see the cart confirmation on the final page, so if they update the shipping, they will see teh updated prices on the next page.

    Don't get me wrong, I think this module is a great asset to any store!

    Absolute

  6. #6
    Join Date
    Sep 2007
    Posts
    50
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hey Numinx,

    I've read this whole thread and it sounds like a great addition to ZC. Since I haven't installed any previous versions, do I just use the EP with the install.sql or some other way?

    Again, great job!

  7. #7
    Join Date
    Dec 2006
    Posts
    107
    Plugin Contributions
    0

    Default Paypal Express Problems

    Hi Numinix,

    I was hoping you could help with a couple of problems which are occurring with Paypal Express. I'm not 100% that they are related to this mod, but it appears that they are.

    I'm in the UK so using the UK version of PP Express.

    First problem is that when you complete a Paypal Express Payment you end up back at the checkout page but with a red warning at the top which says "please tick the box to agree to the terms and conditions" (or something to those words). It's as if it has tried to bypass this page but zen cart hasn't let is as th terms have not been agreed to.

    Second problem is on the same page - most of my customers are in the UK, and in my tests I have made sure that United Kingdom is in the address line in Paypal when I've been paying, but the country is being turned to United States.

    Any ideas?

    FEC Settings are as follows:

    Code:
    Fast and Easy Checkout          true       
    One Page Checkout             true      
    Checkout Confirmation Alternate Text     Your order is being processed, please wait...      
    Display Checkout in Split Column     true      
    Activate Drop Down List         false      
    Gift Wrapping Module Switch         false      
    Activate Gift Message Field         false      
    Drop Down List Options             Option 1,Option 2,Option 3,Option 4,Option 5      
    Activate Checkbox Field         false      
    Easy Sign-Up and Login             true      
    Display Order Total             false      
    Display Confidence Box             true      
    COWOA Position                 top      
    Confirm Email                 true      
    Shipping Address             false      
    Copy Billing                 false      
    Master Password             false      
    Checkout Without Account         false      
    Checkout Without Account Only         false      
    Hide Email Options For No Account     true      
    Automatic LogOff for No Account     true

  8. #8
    Join Date
    Aug 2009
    Posts
    50
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hi Numinex, install goes great until I copy and paste the entire install.sql in and hit send. I get the following error:

    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.

    Any idea on what that is? Has anyone else experienced this problem?

    Thanks in advance for your help!

  9. #9
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,569
    Plugin Contributions
    74

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by Throwdown View Post
    Hi Numinex, install goes great until I copy and paste the entire install.sql in and hit send. I get the following error:

    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.

    Any idea on what that is? Has anyone else experienced this problem?

    Thanks in advance for your help!
    If you have the standalone version of COWOA installed, you will need to remove the first 4 or so lines from the top of the SQL file that create the columns for COWOA.

  10. #10
    Join Date
    Jun 2008
    Posts
    187
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hello all,
    does anyone know the anwser to my question above ^.

    Andy.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg