Page 25 of 29 FirstFirst ... 152324252627 ... LastLast
Results 241 to 250 of 2177

Hybrid View

  1. #1
    Join Date
    Apr 2006
    Location
    Midland TX
    Posts
    428
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by tbrides View Post
    Hi,
    Ok somebody probably has answered this, but I can't find it in the threads. How do you get it to select the default payment method?
    What is the Default Payment method?

  2. #2
    Join Date
    Oct 2011
    Location
    Toronto
    Posts
    7
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Using ZC1.3.9h
    Haven't updated because so far, haven't seen that SSU is compatible with ZC1.5.

    Installed the version 1.9.6 from Numinix and toyed with some configuration options in the admin, but I can't seem to get it working.

    I set Admin -> Configuration -> Fast and Easy Checkout Configuration -> Fast and Easy Checkout -> True

    and

    I set Admin -> Configuration -> Fast and Easy Checkout Configuration -> Checkout Without Account Only -> True

    But when I go to checkout, it displays just the shipping information page - the billing information and cart information is all missing. It doesn't look like the image on Numinix *https://www.numinix.com/images/fec_3.jpg* at all.

    Proceeding to the "billing page" just creates an empty page.

    Any idea why it's not displaying the same page as seen on Numinix?

  3. #3
    Join Date
    May 2011
    Posts
    15
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by tbrides View Post
    Hi,
    Ok somebody probably has answered this, but I can't find it in the threads. How do you get it to select the default payment method?
    I am having this same problem. If I set it to Fast & Easy Checkout "TRUE", no default payment method is selected. Then, you enter the card info & if you don't select the radio dial it gives you an error and you have to re-enter. If I set to Fast & Easy Checkout "FALSE" it works fine.

    Also, In Internet Explorer only the "EASY sign-up & login" page has the login fields skewed.

    I didn't have either of these problems until i updated to the 3/16 release.

  4. #4
    Join Date
    Apr 2006
    Location
    Midland TX
    Posts
    428
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by manythanks View Post
    I am having this same problem. If I set it to Fast & Easy Checkout "TRUE", no default payment method is selected. Then, you enter the card info & if you don't select the radio dial it gives you an error and you have to re-enter. If I set to Fast & Easy Checkout "FALSE" it works fine.

    Also, In Internet Explorer only the "EASY sign-up & login" page has the login fields skewed.

    I didn't have either of these problems until i updated to the 3/16 release.
    I can tell you this, if the mod is installed correctly it will work. So what I would do is compare FEC to the installed files in your Zencart. If you don't find any file in a wrong folder or missing then most likely you have a file that is merged wrong and is not playing nice with FEC. Use Beyond Compare or free Winmerge.

    I have said this before don't ever just upload mod files. Download your working cart files and Compare the mod files you are wanting to install to the working installed files in your zencart. You will see where there is potential problems.

  5. #5
    Join Date
    Sep 2007
    Location
    Herne Bay, Kent, England
    Posts
    182
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Hi. I hope someone here can give me some advice.

    I don't really want my customers to have the option of creating an account but I can't find the way to successfully turn them off.

    I have Fast and Easy Checkout installed and have turned off (ie set to False) the following

    Fast and Easy Checkout
    Easy Sign-Up and Login
    Checkout without account

    Checkout without account only is set to true.

    That still gives me the option to sign in to an existing account or create a new one.

    With "Checkout without account only" set to false as well, I get a "Whoops your session has expired" message.

    What am I missing?

  6. #6
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    managed to fix it myself thanks anyway

  7. #7
    Join Date
    Jul 2011
    Location
    Glasgow, Scotland
    Posts
    113
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by ideasgirl View Post
    Yes, I could... Which FAQ?
    Hope this helps

    http://www.zen-cart.com/content.php?...-my-sideboxes-
    appear-only-when-a-visitor-is-logged-in

    Again posting on the go, sorry for the short answer.

  8. #8
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Fast and Easy Checkout

    appear-only-when-a-visitor-is-logged-in
    I don't think this will solve the problem (I was so happy when thought it might).

    See, I don't want to hide the sidebox for non logged users. The problem is that I had hidden the sidebox from SSL pages to avoid the issue (the whole sidecolumn BTW). But when a customer logs in (without having anything in their cart, just going directly) the system will send them to the main page with SSL (https://) and then the non-encrypted warning shows up.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  9. #9
    Join Date
    Jul 2011
    Location
    Glasgow, Scotland
    Posts
    113
    Plugin Contributions
    1

    Idea or Suggestion Re:hiding sidebox content

    @ Ideasgirl
    Ah! I see, then would something like this help then. I'm at home now and can give you a fuller answer

    Code:
    <?php // If page is SSL then use Secure Code
    if($_SERVER['HTTPS']=='on'){
    echo '<div class="sslon">';
    echo '<p><strong>Your are on a secure SSL connection!</strong><br />Some social link providers do not supply a secure link to page data. Thank you</p>';
    echo '</div>';
    } 
    else { // Else use Non-SSLCode
    echo '<div class="ssloff">';
    //echo '<strong>Put whatever you like.</strong>';
    echo '<table width="100%" border="0" cellspacing="5px" cellpadding="5px">';
    echo '<tr>';
    echo '<td>I used a table</td>';
    echo '<td>It was on a main page</td>';
    echo '</tr>';
    echo '<tr>';
    echo '<td>You could use this in your sidebox</td>';
    echo '<td>It can hide text only or scripts</td>';
    echo '</tr>';
    echo '</table>';
    echo '</div>';
    } // End if
    ?>
    If you use scripts in side it I wouls wrap the script

    Code:
    <script type="text/javascript">//<![CDATA[
    Whatever code
    //]]></script>
    Again, sorry for the short answers earlier hope this covers it for you.
    BTW: like your store layout and colour scheme.
    Last edited by BillyBoyle; 12 Jun 2012 at 11:04 PM.

  10. #10
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: hiding sidebox content

    Ah! I see, then would something like this help then.
    This looks great, but where am I going to put this code? Remember I'm no programmer, so you have to hold my hand.

    Thanks for your compliments about my store...
    Last edited by ideasgirl; 13 Jun 2012 at 03:08 AM.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

 

 
Page 25 of 29 FirstFirst ... 152324252627 ... 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