Page 4 of 279 FirstFirst ... 234561454104 ... LastLast
Results 31 to 40 of 2784
  1. #31
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by fjbern1943 View Post
    Hello,

    Just changed the /includes/modules/pages/checkout_one/header_php.php file, as shown in post#28 above. When I change the shipping method the subtotal or the total do not update. Changed the file back to the original plugin file and the behavior is the same.

    Frank
    Does it update correctly if you change back to the conventional 3 page checkout?

  2. #32
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Thanks, Frank (was that PayPal Express Checkout?)....
    Yes it is Cindy.

  3. #33
    Join Date
    Apr 2015
    Location
    United States
    Posts
    144
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by frank18 View Post
    Does it update correctly if you change back to the conventional 3 page checkout?
    Yes when I switch back to the standard 3 page checkout the shipping charges change and the totals are updated when I goto step 2.

    Frank

  4. #34
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by fjbern1943 View Post
    Yes when I switch back to the standard 3 page checkout the shipping charges change and the totals are updated when I goto step 2.

    Frank
    Ok, if the conventional checkout works as expected then your basic configuration is ok. Now pls check that all files/folders contained in this package are uploaded to the correct locations.

    Cheers / (another) Frank

  5. #35
    Join Date
    Apr 2015
    Location
    United States
    Posts
    144
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by frank18 View Post
    Ok, if the conventional checkout works as expected then your basic configuration is ok. Now pls check that all files/folders contained in this package are uploaded to the correct locations.

    Cheers / (another) Frank
    yes, all files have been uploaded and are in their right place. Did notice however that not all template files in the template_default folder are in the responsive_sheffield_blue folder only the css folder is there.

    Frank

    Frank

  6. #36
    Join Date
    Apr 2015
    Location
    United States
    Posts
    144
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by fjbern1943 View Post
    yes, all files have been uploaded and are in their right place. Did notice however that not all template files in the template_default folder are in the responsive_sheffield_blue folder only the css folder is there.

    Frank

    Frank
    oK I lied found out the 1.54 only file jscript_framework.php file was missing from both the template_default and responsive_sheffield_blue folders. Uploaded them and guess what everything is working now.

    Frank

  7. #37
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    @fjbern1943, thanks for the update that applying the Zen Cart 1.5.5a corrections to the jscript_framework.php file corrected your issues (make sure that you also updated the /ajax.php file since you're running Zen Cart 1.5.4).

  8. #38
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    I've just submitted v1.0.1 to the plugins area; it will be available for download once reviewed.

    This version contains the following changes; the change numbers identify the issue numbers from the plugin's GitHub repository:

    #1: Add check for customer's authorization level
    #2: AJAX changes apply to Zen Cart 1.5.5, too.
    #3: Add support for the terms&conditions block.
    #4: Add instructions for updating ROBOTS_PAGES_TO_SKIP
    #5: Correction for payment methods that insert form methods (like eWay) on the confirmation page
    #6: Shipping not calculated/selected on initial entry to checkout on some stores
    #7: Remove unwanted extra double-quote in checkout_one_confirmation page's template
    #8: Set shipping/payment button edit-flags on confirmation page
    #9: Correct progress indicator not showing on confirmation page.
    #10: Update debug.
    #11: Pre-integration with Products' Options' Stock Manager.

  9. #39
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Using One-Page Checkout with PDP (Product Delivery By Postcode) Shipping Module

    If you are using my shipping module 'Product Delivery By Postcode (PDP)' https://www.zen-cart.com/showthread....-(PDP)-Support ) you need to make 2 additions to the One-Page Checkout module.

    1. File includes/modules/pages/checkout_one/header_php.php

    After line 203 insert

    PHP Code:
    // bof postcode allowed (PDP)
      
    $check_delivery_postcode $order->delivery['postcode'];
      
      
    // shorten UK / Canada postcodes to use first part only
      
    $check_delivery_postcode zen_get_UKPostcodeFirstPart($check_delivery_postcode);

        
    // now check db for allowed postcodes and enable / disable relevant shipping modules
          
          
    if (in_array($check_delivery_postcode,explode(","MODULE_SHIPPING_LOCALDELIVERY_POSTCODE))) {
            
    // continue as normal
          
    } else {
             
    $localdelivery false;
          }
          
          if (
    in_array($check_delivery_postcode,explode(","MODULE_SHIPPING_STOREPICKUP_POSTCODE))) {
            
    // continue as normal
          
    } else {
             
    $storepickup false;
          }
    // eof postcode allowed (PDP) 
    2. File includes/templates/template_default/tpl_checkout_one_default.php

    Find
    Code:
        <h2 id="checkoutShippingHeadingMethod"><?php echo TITLE_NO_SHIPPING_AVAILABLE; ?></h2>
        <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_NO_SHIPPING_AVAILABLE; ?></div>
    and change to

    PHP Code:
        <h2 id="checkoutShippingHeadingMethod"><?php echo TITLE_NO_SHIPPING_AVAILABLE?></h2>
        
    <!--bof local delivery only alert -->
        <div id="cartLocalText">
    <?php
        
    // check if product marked local delivery only is in cart
        
    global $cart ;
        
    $chk_local_delivery_only $_SESSION['cart']->in_cart_check('product_is_local_delivery','1');
        if (
    $chk_local_delivery_only) {
          echo 
    TEXT_PRODUCT_LOCAL_DELIVERY_ONLY;
        }
    ?>
        </div>
    <!--eof local delivery only alert -->

        <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_NO_SHIPPING_AVAILABLE?></div>
    Cheers / Frank

  10. #40
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Thanks for that, Frank. I'll just note that any changes to the One-Page Checkout's default templates should be treated just like any other template-override, i.e. copy the file from /includes/templates/template_default/templates into /includes/templates/YOUR_TEMPLATE/templates before making those changes!

    Otherwise, those changes (like the ones to the page's header_php.php) will be overwritten on a plugin update (unless you remember where you made those changes).

 

 
Page 4 of 279 FirstFirst ... 234561454104 ... LastLast

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