Page 137 of 296 FirstFirst ... 3787127135136137138139147187237 ... LastLast
Results 1,361 to 1,370 of 2956
  1. #1361
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,616
    Plugin Contributions
    19

    Default Re: One-Page Checkout [Support Thread]

    Looks like my coffee just kicked in.

    What do you think of this as a solution, do you see any downsides?
    includes/modules/pages/checkout_one/jquery.checkout_one.js
    Code:
    function changeBillingFields(event)
        {
            if (jQuery('#checkoutOneGuestInfo .opc-buttons').length) {
                if(jQuery('#checkoutOneGuestInfo .opc-buttons').is(":hidden")) {
                    jQuery(this).addClass('opc-changed');
                    jQuery('#checkoutOneBillto .opc-buttons').show();
                    jQuery('#checkoutPayment > .opc-overlay').addClass('active');
                    jQuery('#checkoutOneBillto').addClass('opc-view');
                }
            } else {
                jQuery(this).addClass('opc-changed');
                jQuery('#checkoutOneBillto .opc-buttons').show();
                jQuery('#checkoutPayment > .opc-overlay').addClass('active');
                jQuery('#checkoutOneBillto').addClass('opc-view');
            }
        }
    It seems to work, but I'd prefer getting confirmation that it won't cause problems in certain situations that I can't think of at the moment.

  2. #1362
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by balihr View Post
    Thank you!

    Close, but... This disables autofill on the billing address, forcing the customer to type it, which is quite bad for those who are used to using autofill. It does work on Contact Information, you save it but then all other billing fields need to be populated manually.
    BTW, autocomplete="off" is ignored by Chrome (see SO) so I put autocomplete="new-password"

    If you manually fill in the form and jump inputs using Tab key, you can get to billing address and type in your name and remove the overlay.

    I think the perfect scenario would be to keep the overlay active until Contact Information is saved. Is that possible?
    Arggh, Chrome is the new IE! It's not the overlay, per se, since it's still there. The issue is that the address-related inputs are present on the page, even though they're visually obscured.
    Quote Originally Posted by balihr View Post
    Looks like my coffee just kicked in.

    What do you think of this as a solution, do you see any downsides?
    includes/modules/pages/checkout_one/jquery.checkout_one.js
    Code:
    function changeBillingFields(event)
        {
            if (jQuery('#checkoutOneGuestInfo .opc-buttons').length) {
                if(jQuery('#checkoutOneGuestInfo .opc-buttons').is(":hidden")) {
                    jQuery(this).addClass('opc-changed');
                    jQuery('#checkoutOneBillto .opc-buttons').show();
                    jQuery('#checkoutPayment > .opc-overlay').addClass('active');
                    jQuery('#checkoutOneBillto').addClass('opc-view');
                }
            } else {
                jQuery(this).addClass('opc-changed');
                jQuery('#checkoutOneBillto .opc-buttons').show();
                jQuery('#checkoutPayment > .opc-overlay').addClass('active');
                jQuery('#checkoutOneBillto').addClass('opc-view');
            }
        }
    It seems to work, but I'd prefer getting confirmation that it won't cause problems in certain situations that I can't think of at the moment.
    I'll need for my coffee to kick in to review!

  3. #1363
    Join Date
    Jan 2013
    Posts
    898
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    ihave this Module installed called zx point of sell, i installed your current version on zen v1.56c and php 7.2, when i login in i get a redirection problem
    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.
    this is code in login header
    Code:
    // BOF ZenExpert - Barcode cart 1/1
            else if(isset($_SESSION['POStoken'])) {
              zen_redirect(zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', $request_type));
            } 
    		// EOF ZenExpert - Barcode cart 1/1

  4. #1364
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by jimmie View Post
    ihave this Module installed called zx point of sell, i installed your current version on zen v1.56c and php 7.2, when i login in i get a redirection problem
    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.
    this is code in login header
    Code:
    // BOF ZenExpert - Barcode cart 1/1
            else if(isset($_SESSION['POStoken'])) {
              zen_redirect(zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', $request_type));
            } 
            // EOF ZenExpert - Barcode cart 1/1
    You'll need to contact ZenExpert to correct the issue.

  5. #1365
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Arggh, Chrome is the new IE! It's not the overlay, per se, since it's still there. The issue is that the address-related inputs are present on the page, even though they're visually obscured.

    I'll need for my coffee to kick in to review!
    There's a fairly long-standing change request (https://github.com/lat9/one_page_checkout/issues/163) for OPC, requesting that the guest-checkout "Customer Information" and "Billing Address" blocks be combined.

    I believe that that change is going to be the best customer-experience solution for this autocomplete issue.

  6. #1366
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    There's a fairly long-standing change request (https://github.com/lat9/one_page_checkout/issues/163) for OPC, requesting that the guest-checkout "Customer Information" and "Billing Address" blocks be combined.

    I believe that that change is going to be the best customer-experience solution for this autocomplete issue.
    All finished. Check out the changes associated with the above GitHub issue; I've updated OPC's jQuery handler to combine those two blocks during guest checkout. Remember to grab both the full and minimized versions (they've both shrunk a bit).

  7. #1367
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,616
    Plugin Contributions
    19

    Default Re: One-Page Checkout [Support Thread]

    Brilliant! Just brilliant! TYVM!

  8. #1368
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by balihr View Post
    Brilliant! Just brilliant! TYVM!
    Thanks, @balihr. Anyone else want to "kick the tires" before I release v2.2.0?

  9. #1369
    Join Date
    Apr 2008
    Posts
    92
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    I am currently running 155e

    I have had installed a custom checkout that only my admin accesses. It uses a combination of barcode cart for the product POS, and I am using one-page checkout. I want the ability to choose the product in the POS page (barcode cart), and on the one-page checkout change the price being charged for the product, so that it still removes the product from the inventory, but records a giveaway (or a sample) in the total sale.

    I installed the "edit orders-4.4.3" module in the hopes that would work. It does do what I want done, but only in the admin, after an order is processed.

    I'd like to edit the order on the fly.

    Any suggestions?

  10. #1370
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,346
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by Pepperfire View Post
    I am currently running 155e

    I have had installed a custom checkout that only my admin accesses. It uses a combination of barcode cart for the product POS, and I am using one-page checkout. I want the ability to choose the product in the POS page (barcode cart), and on the one-page checkout change the price being charged for the product, so that it still removes the product from the inventory, but records a giveaway (or a sample) in the total sale.

    I installed the "edit orders-4.4.3" module in the hopes that would work. It does do what I want done, but only in the admin, after an order is processed.

    I'd like to edit the order on the fly.

    Any suggestions?
    I have no idea what your "barcode cart" functionality provides. Could you elaborate a bit more on what 'workflow' you are trying to achieve?

 

 

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