Viewing 1 replies (of 1 total)
  • please add below code in the theme function.php file

    add_filter( ‘woocommerce_ship_to_different_address_checked’, ‘__return_true’ );
    add_action(“woocommerce_before_checkout_shipping_form”,”shipping_heading”);
    function shipping_heading($checkout){
    echo ‘<h3><span>’.__( ‘Ship to a different address?’, ‘woocommerce’ ).'</span>’;
    }

    Also, add the below CSS in the style.css file

    #ship-to-different-address {
    display: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘can we make shipping address fields permanent in checkout page ?’ is closed to new replies.