Page 210 of 218 FirstFirst ... 110160200208209210211212 ... LastLast
Results 2,091 to 2,100 of 2177
  1. #2091
    Join Date
    Sep 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by carlwhat View Post
    this type of error is generally a js loading problem. and most likely a jquery problem.

    i'm guessing that:

    modules/pages/no_account/jscript_form_check.php

    is missing.

    see if you can track that file down; upload it and see what happens.

    good luck!
    Correct, there is no jscript_form_check.php in that folder. Unfortunately, the plugin folder is also missing the file. None of the /includes/modules/pages/* folders in the plugin download have that file anywhere. Checking must be done another way.

    The other javascript operations seem to be working well. Changes on the page happen without reload depending on what you're doing where.
    I'll continue going over the javascript files and see if there's something missing.

    Any other ideas?

  2. #2092
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout for Zen Cart

    do you have this file:

    includes/form_check.js.php

    do you have a URL i can look at?

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  3. #2093
    Join Date
    Sep 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Yes the file is there.

  4. #2094
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout for Zen Cart

    on the installer, it says:

    Navigate via FTP to includes/modules/pages/create_account/ and backup then delete the following files:
    jscript_addr_pulldowns.php
    jscript_form_check.php
    on_load_main.js

    were those files deleted?
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #2095
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout for Zen Cart

    ok... please let me know if this works.

    i see 2 errors; 1 of which looks like your own doing, the other error looks like it is part of the FEC plugin. although i could be wrong.

    part of the install of FEC is this file:

    includes/templates/YOUR_TEMPLATE/jscript/jquery/jquery_form_check.php

    i would first compare your version to the downloaded version. it looks like around line 118, you have the following typo:

    PHP Code:
    //original
    function check_form_registration(form_name) {

    //your code:
    </radion check_form_registration(form_name) { 
    that looks like a small typo that you possibly made.

    in addition, i am not sure what this function does! i can not find it elsewhere in the plugin or on my site.

    i would change that line back to the original, and see if the error still exists.

    if the error persists, i would change the code to the following:

    PHP Code:
    //function check_form_registration(form_name) {
    function check_form(form_name) { 
    making that change should resolve the function not found error.

    please let us know what you find out!

    good luck!
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  6. #2096
    Join Date
    Sep 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I compared the includes/templates/YOUR_TEMPLATE/jscript/jquery/jquery_form_check.php
    in my template folder with the same file in numinix-fec-119ca30 using Meld. Both are identical. I uploaded the file again and saw no change. I don't have the code
    Code:
    </radion check_form_registration(form_name) {
    anywhere in the file or any file. I don't have the string "radion" in any file on the site. I checked using:
    Code:
    $ grep -ri "radion" *
    Checked both local dev files and live server files.

    When I change the function name to just form_check in jqueyr_form_check.php, Firebug console then shows the error:
    TypeError: field_value is undefined
    which points to:

    Code:
    if (field_value == '' || field_value.length < field_size) {"
    The field_value is set just before that line:
    Code:
    18 function check_input(field_name, field_size, message) {
     19   if (jQuery('[name=' + field_name + ']') && (jQuery('[name=' + field_name + ']').attr("visibility") != "hidden"))     {
     20     if (field_size == 0) return;
     21     var field_value = jQuery('[name=' + field_name + ']').val();
     22     if (field_value == '' || field_value.length < field_size) {
     23       error_message = error_message + "* " + message + "\n";
     24       error = true;
     25       jQuery('[name=' + field_name + ']').addClass("missing");
     26     }
     27   }
     28 }
    I'm thinking there is some javascript conflict somewhere but I'm not seeing it.

  7. #2097
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout for Zen Cart

    jonas,
    you have changed your code as i now get the function not defined error. and i do NOT see the check_form_registration function.

    and really the place for this file is:

    includes/templates/ki_custom/jscript/jquery/jquery_form_check.php which now is not there or the permissions are wrong on it.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #2098
    Join Date
    Sep 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I've spent too much time on this already. I have no solution. There must be a javascripty thing I'm getting crossed up somewhere.
    It may not even be this module, but I've removed it and started over. I may attempt it again in the future, but for now, I'll have to pass on it.

    Thanks for the assistance.

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

    Default Re: Fast and Easy Checkout for Zen Cart

    (reposting as no solution yet)
    I really need to move sub total & Total sightly to the left as it is cutting out 1 digit



    Quote Originally Posted by Andy-C27 View Post
    I need to move one of the left rows on checkout to the left as it is cutting off the pence/ or cents so if it's 1 pound and 10 pence it shows as 1.1 and cuts off the zero.
    All that needs doing is to move the 1 side to make it a bit wider... I have done it before but cannot for the life of me find the post again Attachment 16030
    Once I find the right file I can figure it out myself

    thanks
    Last edited by Andy-C27; 10 Apr 2016 at 05:18 PM.

  10. #2100
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: Fast and Easy Checkout for Zen Cart

    I am having problems with 'forgotten password' (FP). The plugin does not seem to change the FP page to look something like the login screen. My forgotten password page. Or am I barking up the wrong tree and it should not change?

    I have had this problem in v1.5.4 and it is still there with v1.5.5. template is Responsive Sheffield Blue
    Learning Fast.
    Eden Craft Supplies

 

 

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