Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @daveylatt, you can add below code into your theme functions.php:

    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    
    function custom_override_checkout_fields( $fields ) {
         $fields['billing']['billing_company']['label'] = 'Name of Club';
         return $fields;
    }

    You may refer to this link for more information on how to customize checkout fields.

    Thread Starter Daveylatt

    (@daveylatt)

    Cheers

    I will look at link you provided as it opens up other options for me also!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Billing address form’ is closed to new replies.