Page 190 of 218 FirstFirst ... 90140180188189190191192200 ... LastLast
Results 1,891 to 1,900 of 2177
  1. #1891
    Join Date
    Jun 2012
    Location
    California
    Posts
    238
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    That would be why it is not showing up then because there is no entry in that table for Fast And Easy.
    I guess the auto installer is not completing the SQL entries either.
    Is there a specific location in the setup files where the SQL entries would be so I can run them manually?

    Quote Originally Posted by bislewl View Post
    Something must have went wrong with the auto-installer.
    in the admin choose the last item in the configuration.
    In the address bar will be gID=xx
    increase/decrease the xx and you should see it.

    Then for easy access next time in your DB, TABLE_ADMIN_PAGES. look for the entry for Fast & Easy Checkout and change the parameter to gID=YY

    That usually does the trick.

  2. #1892
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Hello,
    v1.3.9h

    I successfully loaded FEC on a site using standard ZC template, no problems, however I am having difficulty getting it to work on a site using Abbington Mega template by Picaflor Azul (I have 6 sites with this particular template).

    I have triple checked the file uploads and the CSS/JS Loader - all is as it should be including filename changes etc.

    Problem occurs on page 2/3 after completing data input and then clicking 'continue to checkout' or 'checkout with PayPal' after which I get this error message [The page isn't redirecting properly - Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies.]

    So I am wondering if there is a conflict with this mod working with Abbington Mega template?

    cheers,
    Mike

    site http://treeoflife.net.au/tree_of_life_store/

  3. #1893
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Does this result happen when using IE (Internet Explorer) ...

  4. #1894
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by haredo View Post
    Does this result happen when using IE (Internet Explorer) ...
    Thanks for your response Haredo - No it doesn't work in IE - as indicated above, worked fine with standard ZC template but not with Abbington Mega template so I figure it is likely to be a conflict - just need someone at Numinix to check this scenario.
    cheers, Mike

  5. #1895
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    Your loading 2 versions of jQuery 1.4.4 and 1.10.2, remove the 1.4.4 (leaving 1.10.2 and the migrate 1.2.1) and it should work

  6. #1896
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by bislewl View Post
    Your loading 2 versions of jQuery 1.4.4 and 1.10.2, remove the 1.4.4 (leaving 1.10.2 and the migrate 1.2.1) and it should work
    thanks for your response - have had partial success, using checkout with paypal express button now works however guest checkout still doesn't. Interestingly there is a checkout tab in the header in this template and with something in the cart when using this tab it goes nowhere, i.e. same error message.

    in includes/templates/abbington_mega/jscript I deleted two files jscript_jquery_1.4.4.js and jquery-1.4.4_min.js, firstly both at once then restored each individually one at a time without success - both are currently deleted.

    So current situation is from shopping cart >checkout with paypal works (this is an improvement); shopping cart>go to checkout>guest checkout> works then fails on this page when the 'continue' button is hit.

    looking forward to further assistance, cheers, Mike

  7. #1897
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    Mike-

    Couple quick items. For conversion.
    1.) Add the add to cart button below the products, customers don't always intuitively know to enter the quantity and then go either up/down to click add to cart.
    2.) Remove the email salutation Configuration->Customer Details, this really serves little purpose anymore and is nothing more than a frustration to customers when the form doesn't validate.
    3.) I suspect part of your issues might be related to your SEO module, It shouldn't rewrite checkout pages.

    ok, you removed the other versions of jQuery, so you aren't loading duplicates on checkout, but now you aren't loading it at all on the rest of the site.

    to fix this

    Create a file: includes/templates/abbington_mega/auto_loaders/loader_sitewide.php

    PHP Code:
    <?php
    $loaders
    [] = array('conditions' => array('pages' => array('*)),
        '
    jscript_files' => array(
            '
    jquery/jquery-1.10.2.min.js' => 1,
            '
    jquery/jquery-migrate-1.2.1.min.js' => 2
        )
    );

  8. #1898
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by bislewl View Post
    Mike-

    Couple quick items. For conversion.
    1.) Add the add to cart button below the products, customers don't always intuitively know to enter the quantity and then go either up/down to click add to cart.
    2.) Remove the email salutation Configuration->Customer Details, this really serves little purpose anymore and is nothing more than a frustration to customers when the form doesn't validate.
    3.) I suspect part of your issues might be related to your SEO module, It shouldn't rewrite checkout pages.

    ok, you removed the other versions of jQuery, so you aren't loading duplicates on checkout, but now you aren't loading it at all on the rest of the site.

    to fix this

    Create a file: includes/templates/abbington_mega/auto_loaders/loader_sitewide.php

    PHP Code:
    <?php
    $loaders
    [] = array('conditions' => array('pages' => array('*)),
        '
    jscript_files' => array(
            '
    jquery/jquery-1.10.2.min.js' => 1,
            '
    jquery/jquery-migrate-1.2.1.min.js' => 2
        )
    );
    Hi - I created that php and loaded it - then the site would not load at all!! so I have removed it.

    any other suggestions? cheers, Mike

  9. #1899
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by shags38 View Post
    Hi - I created that php and loaded it - then the site would not load at all!! so I have removed it.

    any other suggestions? cheers, Mike
    Sorry Typo in that, I missed the ' after the *

    PHP Code:
    <?php
    $loaders
    [] = array('conditions' => array('pages' => array('*')),
        
    'jscript_files' => array(
            
    'jquery/jquery-1.10.2.min.js' => 1,
            
    'jquery/jquery-migrate-1.2.1.min.js' => 2
        
    )
    );

  10. #1900
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by bislewl View Post
    Sorry Typo in that, I missed the ' after the *

    PHP Code:
    <?php
    $loaders
    [] = array('conditions' => array('pages' => array('*')),
        
    'jscript_files' => array(
            
    'jquery/jquery-1.10.2.min.js' => 1,
            
    'jquery/jquery-migrate-1.2.1.min.js' => 2
        
    )
    );
    Thanks Larry - that solved the issue of the site not loading at all however unfortunately the original issue still exists. As much as I have a checkout not working (eating baked beans for a few days now :) ) I am loathe to uninstall FEC until a solution is found as I want to integrate it into 5 other sites using this template - hopefully it can be resolved soon. Other than the other version of jscript being a problem I cannot see where the conflict may be?

    Should I send an email to numinix?

    cheers, Mike
    Last edited by shags38; 20 Nov 2014 at 06:45 AM.

 

 

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR