Page 60 of 296 FirstFirst ... 1050585960616270110160 ... LastLast
Results 591 to 600 of 2956
  1. #591
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by dbltoe View Post

    Society today stands in front of a microwave and hollers, "HURRY UP!"

    Slow and steady. You will make mistakes but taking time to read each step can make it go much smoother.

    When I had a cubicle, I had a big sign that said, "Pobody's Nerfect!"
    Yes. I am doing this and it is scary. Yes, ONE step at the time. ONE instruction line at the time. I'll do it. I know. I have had so much help in this forum in the past, i know i can always count on you all!

  2. #592
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    So yes, my next question (to follow to the letter), what does MERGE mean when i want to add a file. Using ftp, i don't have the option to MERGE, but only OVERWRITE. Is that the case? I don't want to make more trouble than I need!

  3. #593
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,448
    Plugin Contributions
    11

    Default Re: One-Page Checkout [Support Thread]

    You'll need something like winmerge for windows. You'll look at two files and determine which parts need to be merged together in order to make the particular mod work.

  4. #594
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by dbltoe View Post
    You'll need something like winmerge for windows. You'll look at two files and determine which parts need to be merged together in order to make the particular mod work.
    Oh ok... that is clearer, thanks.

  5. #595
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    I followed all the instructions, to the letter, uploaded all the files, etc.
    However, I don't see anything similar to the jpg image that is included in the package. I double checked all the instructions and the files being uploaded correctly.

    Anything you can suggest I triple-check?

  6. #596
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by CaroleAs View Post
    I followed all the instructions, to the letter, uploaded all the files, etc.
    However, I don't see anything similar to the jpg image that is included in the package. I double checked all the instructions and the files being uploaded correctly.

    Anything you can suggest I triple-check?
    Did you enable One-Page Checkout in Admin>Config>One Page Checkout Settings?

    Cheers,

    jpda

  7. #597
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Hum, no I had not done that. (didn't see it in the instructions) But it is done now.

    It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.

    Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.

    http://challengemehq.com

  8. #598
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by CaroleAs View Post
    Hum, no I had not done that. (didn't see it in the instructions) But it is done now.

    It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.

    Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.

    http://challengemehq.com
    The checkout starts after clicking the checkout button on the Shopping Cart.
    Did you enable One-Page Checkout Debug in Admin>Config>One Page Checkout Settings? If so, you can find which elements are missing in the log files in your logs folder, also very useful when you get blank pages.
    I guess you did not upload some files correctly.

    Here below is a part of the code (in "\includes\modules\pages\checkout_one\jscript_main.php") that popped up the warning.
    Don't worry about the code itself, it might give you an idea about what might be missing.
    Code:
    <?php
        // -----
        // There are a bunch of "required" elements for this submit-less form to be properly handled.  Check
        // to see that they're present, alerting the customer (hopefully the owner!) if any of those elements
        // are missing.
        //
    ?>
        var elementsMissing = false;
        if (jQuery( 'form[name="checkout_payment"]' ).length == 0) {
            elementsMissing = true;
            zcLog2Console( 'Missing form[name="checkout_payment"]' );
        }
        if (jQuery( '#orderTotalDivs' ).length == 0) {
            elementsMissing = true;
            zcLog2Console( 'Missing #orderTotalDivs' );
        }
        if (jQuery( '#current-order-total' ).length == 0) {
            elementsMissing = true;
            zcLog2Console ( 'Missing #current-order-total' );
        }
        if (jQuery( '#opc-order-confirm' ).length == 0) {
            elementsMissing = true;
            zcLog2Console( 'Missing #opc-order-confirm' );
        }
        if (jQuery( '#opc-order-review' ).length == 0) {
            elementsMissing = true;
            zcLog2Console( 'Missing #opc-order-review' );
        }
    <?php
    if (!$is_virtual_order) {
    ?>
        if (jQuery( '#otshipping' ).length == 0) {
            elementsMissing = true;
            zcLog2Console ( 'Missing #otshipping' );
        }
    <?php
    }
    ?>
        if (elementsMissing) {
            alert( 'Please contact the store owner; some required elements of this page are missing.' );
        }
    Look at the log files anyway!
    Hope this will help a bit,

    Cheers,

    jpda
    Last edited by jpda; 25 Aug 2017 at 08:55 AM. Reason: typo

  9. #599
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,342
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by CaroleAs View Post
    Hum, no I had not done that. (didn't see it in the instructions) But it is done now.

    It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.

    Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.

    http://challengemehq.com
    When you get that warning popup, you need to look in your browser's console log ... where the plugin's jQuery identifies what is missing.

    On most Windows browsers today, that's accomplished by pressing the F12 key and then clicking the Console tab in the browser-development window that's brought up.

    I'll get these instructions added to the readme's Troubleshooting section.

  10. #600
    Join Date
    Feb 2009
    Posts
    885
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    When you get that warning popup, you need to look in your browser's console log ... where the plugin's jQuery identifies what is missing.

    On most browsers today, that's accomplished by pressing the F12 key and then clicking the Console tab in the browser-development window that's brought up.

    I'll get these instructions added to the readme's Troubleshooting section.
    I tried to read the troubleshooting section, but it was way over my understanding. Didn't even understand it if was explaining anything close to what I was experiencing.

    The checkout starts after clicking the checkout button on the Shopping Cart.
    Did you enable One-Page Checkout Debug in Admin>Config>One Page Checkout Settings? If so, you can find which elements are missing in the log files in your logs folder, also very useful when you get blank pages.
    I guess you did not upload some files correctly.
    Yes, I did enambe the One Page Checkout s under Admin > Config > One page Checkout
    Here is one of the several identical logs that was produced.

    Code:
    [25-Aug-2017 02:48:25 America/New_York] Request URI: /index.php?main_page=checkout_one, IP address: 142.167.45.240
    #1  require() called at [/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php:171]
    #2  require(/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php) called at [/home/creat419/public_html/challengemehq.com/index.php:97]
    
    [25-Aug-2017 02:48:25 America/New_York] PHP Warning:  require(includes/templates/template_default/templates/tpl_checkout_one_default.php): failed to open stream: No such file or directory in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
    [25-Aug-2017 02:48:25 America/New_York] Request URI: /index.php?main_page=checkout_one, IP address: 142.167.45.240
    #1  require() called at [/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php:171]
    #2  require(/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php) called at [/home/creat419/public_html/challengemehq.com/index.php:97]
    
    [25-Aug-2017 02:48:25 America/New_York] PHP Warning:  require(includes/templates/template_default/templates/tpl_checkout_one_default.php): failed to open stream: No such file or directory in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
    [25-Aug-2017 02:48:25 America/New_York] PHP Fatal error:  require(): Failed opening required 'includes/templates/template_default/templates/tpl_checkout_one_default.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
    I am not sure how to interpret this message, but I checked and the file tpl_main_page.php is not missing. Does it say that it has to be edited?

 

 

Similar Threads

  1. Set number of products displayed per page (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 146
    Last Post: 2 Nov 2023, 12:50 AM
  2. v151 Banners In Main Page - Support Thread
    By stevesh in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Sep 2021, 03:36 PM
  3. v151 Site Map/Page Not Found: Combined [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 4 Jan 2016, 02:19 PM
  4. v151 PayPal Express Checkout Using NVP 84.0 [Support Thread]
    By lat9 in forum Addon Payment Modules
    Replies: 32
    Last Post: 28 Dec 2015, 04:54 PM
  5. Checkout Amazon Style -- Support Thread
    By CJPinder in forum All Other Contributions/Addons
    Replies: 72
    Last Post: 13 Apr 2011, 08:18 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