• Resolved yunse

    (@yunse)


    Ship to diffrent adress is checked by default since woocommerce update. Where cann I dsable it?

    This filter is also not working:
    add_filter( ‘woocommerce_ship_to_different_address_checked’, ‘__return_false’ );

Viewing 15 replies - 16 through 30 (of 33 total)
  • @beneva how did you downgrade? just by replacing the woocommerce folder in the plugins folder?

    @apmwebdev could you please advise on the “official” way to downgrade while we wait for a fix?

    Thanks ??

    @sync4489 yes exactly.

    Same problem since 3.9.0 / 3.9.1

    • This reply was modified 4 years, 10 months ago by johndg10.

    Hi all. Thanks for following up! There is now an open, high priority issue for this on the WooCommerce GitHub repo, which you can see here.

    As for the “official” way to downgrade @sync4489 , you’ve got it right! To find a previous version of the plugin, go to the bottom of the page here, download whichever version you like (probably 3.8.1 in this case), and then replace the plugin folder in the plugins directory on your site with this previous version.

    @apmwebdev @beneva Thanks!

    Just downgraded to 3.8.1, the shipping checkbox is correctly unchecked (also by the filter) and even the update_totals ajax trigger is back so the VAT exemption is duly performed.

    Thread Starter yunse

    (@yunse)

    yes downgrading is working for me fine too

    Hey all, just wanted to keep you in the loop here. A fix for the issue has been committed and merged, but is currently slated to be released with WooCommerce 4.0 in a month or so. I’m trying to see if we can get the fix out before then in a point release. I will post updates here as I learn more.

    Thank you! We could really use a point release if possible to fix this asap.

    If you tie it to 4.0 release, a. it is a long time to wait for a simple fix, and b. then we need to do more Q&A and testing on that major release before we can install the fix for this checkbox issue on our live site. Thanks.

    Plugin Support Ross V. a11n

    (@rossviviano)

    Automattic Happiness Engineer

    Hi all!

    This (as y’all figured out) was a bug introduced in WooCommerce 3.9. It already has a fix, and will be released in the next version of WooCommerce.

    Best,

    Ross

    Hi Ross, Let me state again that we could use this simple fix before the next major 4.x release. If you tie it to that then:

    a. it is a long time to wait for a simple bug fix created by your update, and

    b. we need to do more a lot more Q&A and testing on that major release before we can install the fix for this simple checkbox issue on our live site.

    Thanks.

    This bug has also burnt me too, and I thought I was being smart waiting for 3.9.1 before upgrading from 3.8.1

    Now we’re expected to trust a 4.0 build to get this seemingly simple fix

    Same issue here at https://shop.standardlegal.com. Thx.

    A temporary fix that works for me, while updating WC:

    $(document).ready(function() {
       if ( $('form.checkout').length > 0 ) {
          $('#ship-to-different-address-checkbox').prop('checked', false); // Uncheck
          $('.woocommerce-shipping-fields .shipping_address').hide(); // Hide fields
          $('body').trigger('update_checkout'); // Update cart
       }
    });

    Paste in a custom .js file that load in checkout page.

    • This reply was modified 4 years, 9 months ago by johndg10.
    • This reply was modified 4 years, 9 months ago by johndg10.
    • This reply was modified 4 years, 9 months ago by johndg10.

    Hi all! Good news! We released WooCommerce 3.9.2 today, which includes (among other things) a fix for this bug! Thank you all for posting in this thread and telling us about it. It was due in large part to your input that the devs recognized this as an issue that needed to prioritized and fixed before the WooCommerce 4.0 release.

Viewing 15 replies - 16 through 30 (of 33 total)
  • The topic ‘Ship to diffrent adress is pre checked since update’ is closed to new replies.