Online trade get more and more land, and WooCommerce is one of the favorite platforms of Web developers for Creating online stores. In this tutorial you will learn how to defy default “Ship to different address” from the page “Check Out” from WooCommerce. Or how to disable “Ship to different address” In a WooCommerce online store.
A successful online store is the one who knows how to highlight the products well and offer customers a better online experience. The user's online experience starts from the most simple and clear exposure of the products, until Command Command System.
The fields available on the page of “Payment details” / “Checkout”, where the user must Introduce personal dates, such as: name, address, e-mail address, telephone number and other information, they must be as simply structured as possible in the meaning of all. Most Customers of an online store, I choose that delivery address of the products to be the same as billing address.
However, in WooCommerce is tick OPTION “Delivery to another address” / “Ship to different address“. Which means that the user is obliged to click or press once more on the phone screen to deactivate the additional fields, which are mandatory when the option is checked. Unwanted thing if we want to offer an online experience as best as possible to users.

How to defy default “Ship to different address” Din WooCommerce
Fortunately, the option “Ship to different address” DIN Page the Checkout A WooCommerce can be defined by default, adding a code line to the file functions.php of current theme.
add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );
Save the file after adding the line and go to the page of “checkout” of the online store to verify that the option “Ship to different address” There is still tick by default.
Another camp required by WooCommerce in page “Payment details” but which is too little important in some countries is “Postal code” / “Billing Postcode“. Many users do not know what is the postal code of the delivery address, and the courier companies are not taken after this code. It is often wrongly passed by customers, because the field is mandatory.
It can be removed all from functions.php adding the following lines:
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
function custom_override_checkout_fields( $fields ) {
unset($fields['billing']['billing_postcode']);
return $fields;
}
Now you have a system of “placement of command” easier for your customers.
if the way to change the name send to a different address so the name send dropship and fill the column only 2 names and cellphone number
how do I, bro, thank you
Good morning,
This is a Woocommerce feature. You can just change this in Woocommerce shipping options.
WooCommerce–> Delivery options -> Destination of Delivery -> (Select) by default for the customer billing address.
Once this is done, “send to a different address” will not be marked by default.
I hope it will help!
thanks.