Viewing 4 replies - 1 through 4 (of 4 total)
  • I understand the issue you’re facing after updating to the latest version of WooCommerce. To fix the issue, you can try adding the following code to your theme’s functions.php file:

    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    
    function custom_override_checkout_fields( $fields ) {
        $fields['billing']['billing_address_2'] = array(
            'label_class' => '',
        );
        return $fields;
    }
    
    Thread Starter laserstore

    (@laserstore)

    Hello @sabira24 ! The problem has solved! Will this snippet be part of a future update or should I keep it forever? Thank you very much for the support!

    This is a general fix. So you need to keep this change forever.

    Thread Starter laserstore

    (@laserstore)

    Hi! Thank you very much for your help! Amazing!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Label billing_address_2’ is closed to new replies.