Page 199 of 280 FirstFirst ... 99149189197198199200201209249 ... LastLast
Results 1,981 to 1,990 of 2792
  1. #1981
    Join Date
    Sep 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Hmmm... when I verified my files against one_page_checkout-2.3.7.zip, my OnePageCheckout.php was a match. Here is line 2323 from my OnePageCheckout.php:
    Code:
    trigger_error("Unknown/invalid billto address #{$_SESSION['billto']} for customer#{$_SESSION['customer_id']}.", E_USER_ERROR);
    which looks like the error message I received.

  2. #1982
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by llemberg View Post
    Hmmm... when I verified my files against one_page_checkout-2.3.7.zip, my OnePageCheckout.php was a match. Here is line 2323 from my OnePageCheckout.php:
    Code:
    trigger_error("Unknown/invalid billto address #{$_SESSION['billto']} for customer#{$_SESSION['customer_id']}.", E_USER_ERROR);
    which looks like the error message I received.
    My bad, I was looking at the version in the forthcoming v2.3.8 release.

  3. #1983
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by keneso View Post
    Thank you.

    Now I have another problem.

    I have set in
    configuration > my store the basis of product tax, and basis of shipping tax to "store", when adding product the cart shows the full price (tax included), when clicking to checkout, and selecting guest (haven't tested new or existing customer) the price is displayed without tax, and when going back to edit cart (shopping_cart.html) the price has changed and displays without tax.
    The tax column is not displayed in the table

    PHP Code:
    <?php
    // display tax info if exists
    if ($display_tax_column)  {
    ?>
    <td class="cartTotalDisplay"><?php echo zen_display_tax_value($order->products[$i]['tax']); ?>%</td>
    <?php
    }  // endif tax info display
    ?>
    What do you think I messed up?
    You didn't mess up anything ... I did. I've replicated this issue locally and have provided a correction via this OPC GitHub issue.

    The underlying issue is that, for stores having configured My Store :: Store Country as a country containing zones (e.g. Italy) with My Store :: Basis of Product Tax set to Store, the order-class determines the tax-rate to apply via database lookup for a match on a database lookup of an address' country and zone-id. Unfortunately, the OnePageCheckout.php class was not initializing its temporary billing/shipping addresses to include the value present in My Store :: Store Zone.

    With that zone_id set to 0, no matching country/zone pair was found in the database ... resulting in a 0-valued tax-rate.

    That correction is now staged on the OPC GitHub repository for the v2.3.8 release. I'll wait for that release until you can provide third-party verification that the correction actually corrects the issue!

  4. #1984
    Join Date
    May 2009
    Posts
    1,219
    Plugin Contributions
    2

    Default Re: One-Page Checkout [Support Thread]

    Thank you.
    Will give feedback.

  5. #1985
    Join Date
    May 2009
    Posts
    1,219
    Plugin Contributions
    2

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    That correction is now staged on the OPC GitHub repository for the v2.3.8 release. I'll wait for that release until you can provide third-party verification that the correction actually corrects the issue!
    It's a go.
    Thank you.

  6. #1986
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    I've just submitted v2.3.8 of One-Page Checkout for the Zen Cart moderators' review and will post back here when it's available for download.

    This release contains changes associated with the following GitHub issues:

    #291: zc158 compatibility, adding global $languageLoader;.
    #292: Using global $db; instead of $GLOBALS['db'].
    #293: Re-organize the checkout_one page's language file, grouping all jQuery-based constants as an aid in language translations.
    #294: Correct "disappearing taxes" when a store's country has zones and the tax-basis is 'Store'.

  7. #1987
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just submitted v2.3.8 of One-Page Checkout for the Zen Cart moderators' review and will post back here when it's available for download.

    This release contains changes associated with the following GitHub issues:

    #291: zc158 compatibility, adding global $languageLoader;.
    #292: Using global $db; instead of $GLOBALS['db'].
    #293: Re-organize the checkout_one page's language file, grouping all jQuery-based constants as an aid in language translations.
    #294: Correct "disappearing taxes" when a store's country has zones and the tax-basis is 'Store'.
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=2095

  8. #1988
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,556
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    I searched but did not find any mention of this error. After entering the address and clicking update, I get this:

    jquery.checkout_one.min.js?1598622382:5
    Uncaught TypeError: Cannot read property 'length' of null

    Zen Cart 1.5.7a
    OPC 2.3.4
    jQuery 1.7.1 (it's an old template)

    Thanks.

  9. #1989
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by jeking View Post
    I searched but did not find any mention of this error. After entering the address and clicking update, I get this:

    jquery.checkout_one.min.js?1598622382:5
    Uncaught TypeError: Cannot read property 'length' of null

    Zen Cart 1.5.7a
    OPC 2.3.4
    jQuery 1.7.1 (it's an old template)

    Thanks.
    That's going to be a bit difficult to isolate, since it's the minimized jQuery file, but I'm guessing that it's got to do with that very, very woefully old version of jQuery. I'll need to review the jQuery base requirements for OPC's jQuery processing and will most likely provide an update that disallows the OPC processing if the current jQuery version is prior to that minimum-version requirement.

  10. #1990
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,556
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    That's going to be a bit difficult to isolate, since it's the minimized jQuery file, but I'm guessing that it's got to do with that very, very woefully old version of jQuery. I'll need to review the jQuery base requirements for OPC's jQuery processing and will most likely provide an update that disallows the OPC processing if the current jQuery version is prior to that minimum-version requirement.
    If it will be helpful, I can switch to the unminimized version and report back.

 

 

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