• Resolved kirits

    (@kirits)


    Hi,

    How can uncheck check box in checkout page “Ship to different” address? In default it is checked always and that confuses costumers when page asks them to fill all again.

    Thanks,
    Kristaps

Viewing 1 replies (of 1 total)
  • Hi there @kirits 👋

    How can uncheck check box in checkout page “Ship to different” address? In default it is checked always and that confuses costumers when page asks them to fill all again.

    Thanks for reaching out. Happy to help you with this!

    Paste in this line of code into the code snippet plugin (or the functions.php if you are comfortable using PHP):

    // Auto uncheck "Ship to a different address"
    add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );

    It’s best practice to use a plugin that allows you to easily add code snippets into your theme. I suggest using “Code Snippets“.

    I trust that points you in the right direction, but if you have more questions, let us know. We’re happy to help.

Viewing 1 replies (of 1 total)

The topic ‘Checkout check box different address’ is closed to new replies.