Change WooCommerce Ship to a different address?

Add the following code to the ‘custom functions’ area of your theme’s functions.php file.

For Enable:

add_filter( 'woocommerce_ship_to_different_address_checked', '__return_true' );

For Disable:

add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );