Results 1 to 10 of 3052

Hybrid View

  1. #1
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Issue reproduced; I'll determine the root cause and correct 'shortly'.
    See https://github.com/lat9/one_page_checkout/issues/314 for follow-on changes.

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    I've just submitted v2.3.12 of OPC for the Zen Cart moderators' review; I'll post back here when it's available for download (https://www.zen-cart.com/downloads.php?do=file&id=2095).

    This release contains changes associated with these GitHub issues:

    #309: Correct PHP notice on missing HTTP_USER_AGENT
    #310: Correct PHP notice for missing gender on guest-account creation.
    #314: Correct misleading "Shipping options have changed" messaging when cart's changed post-checkout start.

  3. #3
    Join Date
    Nov 2005
    Location
    France
    Posts
    600
    Plugin Contributions
    8

    Default Re: One-Page Checkout [Support Thread]

    Hi @lat9,

    I've received reports of a bug in the address processes during checkout. I tested this myself with a clean install of ZC 1.5.7d and OPC and can confirm I saw the same issues that were reported to me.

    I have pasted the initial report as I received it.

    1. If you only have 2 addresses in your address book and go to edit either the shipping or billing details, you don't get the drop down menu with the other address in it, you just have to fill out your details again. Ideally, if someone has 2 + addresses, the drop down should appear on both shipping and billing
    2. If you have 3 + addresses, and you change your billing details,
    your shipping address automatically changes. This shouldn't happen, you should be able to change your billing details and it not have an effect on the shipping address. The problem only occurs when you change the billing details. If you change the shipping address, the billing details do not update. Things to note:

    * When you manually change the billing address at checkout, the
    problem doesn't occur. It only seems to be when you are choosing from the drop down
    * If you test this, when I initially added more addresses to my
    account and then changed the billing details, the problem didn't occur. However, when you log out and back in, that's when you get the issue.

  4. #4
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by strelitzia View Post
    Hi @lat9,

    I've received reports of a bug in the address processes during checkout. I tested this myself with a clean install of ZC 1.5.7d and OPC and can confirm I saw the same issues that were reported to me.

    I have pasted the initial report as I received it.

    1. If you only have 2 addresses in your address book and go to edit either the shipping or billing details, you don't get the drop down menu with the other address in it, you just have to fill out your details again. Ideally, if someone has 2 + addresses, the drop down should appear on both shipping and billing
    2. If you have 3 + addresses, and you change your billing details,
    your shipping address automatically changes. This shouldn't happen, you should be able to change your billing details and it not have an effect on the shipping address. The problem only occurs when you change the billing details. If you change the shipping address, the billing details do not update. Things to note:

    * When you manually change the billing address at checkout, the
    problem doesn't occur. It only seems to be when you are choosing from the drop down
    * If you test this, when I initially added more addresses to my
    account and then changed the billing details, the problem didn't occur. However, when you log out and back in, that's when you get the issue.
    Thanks for the report. I've opened a GitHub issue to track the cause and solution: https://github.com/lat9/one_page_checkout/issues/315

  5. #5
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    bug Re: One-Page Checkout [Support Thread]

    I am working on a site that has very slow shipping methods. (it makes sense because they are shipping very heavy things by freight and get specific quotes)

    So, when I change an address manually, the opc-overlay is made active. When I chose a stored address from the dropdown it is not. This means that while the quotes are being received, the customer can hit the checkout button. Which causes issues.

    At about line 700 in jquery.checkout_one.js I have a fix in

    Code:
           // -----
        // Monitor the billing- and shipping-address blocks for changes.
        //
        jQuery(document).on('change', '#select-address-bill', function(event) {
            jQuery('#checkoutPayment > .opc-overlay').addClass('active');
            useSelectedAddress('bill', this.value);
        });
        jQuery(document).on('change', '#select-address-ship', function(event) {
            jQuery('#checkoutPayment > .opc-overlay').addClass('active');
            useSelectedAddress('ship', this.value);
        });
    Not sure if this is the appropriate way of doing it or not ...

    (or maybe I am missing something)

  6. #6
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by niccol View Post
    I am working on a site that has very slow shipping methods. (it makes sense because they are shipping very heavy things by freight and get specific quotes)

    So, when I change an address manually, the opc-overlay is made active. When I chose a stored address from the dropdown it is not. This means that while the quotes are being received, the customer can hit the checkout button. Which causes issues.

    At about line 700 in jquery.checkout_one.js I have a fix in

    Code:
           // -----
        // Monitor the billing- and shipping-address blocks for changes.
        //
        jQuery(document).on('change', '#select-address-bill', function(event) {
            jQuery('#checkoutPayment > .opc-overlay').addClass('active');
            useSelectedAddress('bill', this.value);
        });
        jQuery(document).on('change', '#select-address-ship', function(event) {
            jQuery('#checkoutPayment > .opc-overlay').addClass('active');
            useSelectedAddress('ship', this.value);
        });
    Not sure if this is the appropriate way of doing it or not ...

    (or maybe I am missing something)
    niccol, it's appropriate ... I'll need to do a more thorough review of the other processing path (i.e. where a different shipping method is chosen) to see if there's anything else that needs to be added.

    GitHub tracking issue: https://github.com/lat9/one_page_checkout/issues/316
    Last edited by lat9; 6 Apr 2022 at 12:53 PM.

  7. #7
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    618
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Is the Fluorspar template known to be compatible (or not) with the One Page Checkout plugin?

  8. #8
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    niccol, it's appropriate ... I'll need to do a more thorough review of the other processing path (i.e. where a different shipping method is chosen) to see if there's anything else that needs to be added.

    GitHub tracking issue: https://github.com/lat9/one_page_checkout/issues/316
    Correction now provided; staged for the next release of OPC.

  9. #9
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by strelitzia View Post
    Hi @lat9,

    I've received reports of a bug in the address processes during checkout. I tested this myself with a clean install of ZC 1.5.7d and OPC and can confirm I saw the same issues that were reported to me.

    I have pasted the initial report as I received it.

    1. If you only have 2 addresses in your address book and go to edit either the shipping or billing details, you don't get the drop down menu with the other address in it, you just have to fill out your details again. Ideally, if someone has 2 + addresses, the drop down should appear on both shipping and billing
    2. If you have 3 + addresses, and you change your billing details,
    your shipping address automatically changes. This shouldn't happen, you should be able to change your billing details and it not have an effect on the shipping address. The problem only occurs when you change the billing details. If you change the shipping address, the billing details do not update. Things to note:

    * When you manually change the billing address at checkout, the
    problem doesn't occur. It only seems to be when you are choosing from the drop down
    * If you test this, when I initially added more addresses to my
    account and then changed the billing details, the problem didn't occur. However, when you log out and back in, that's when you get the issue.
    I'm not seeing that behavior on zc157d/OPC 2.3.12. On a test account, a customer has specifically two addresses. When entering checkout and clicking the Edit button in either the billing or shipping block, (a) the dropdown shows and (b) the form auto-submits upon change.

 

 

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

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