Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Mike Jolley

    (@mikejolley)

    They are replaced with the localised versions. What code you using?

    Thread Starter Ameer hamza

    (@ameer-hamza)

    // Hook in
    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    
    // Our hooked in function - $fields is passed via the filter!
    function custom_override_checkout_fields( $fields ) {
         $fields['billing']['billing_email']['label'] = 'Email';
         return $fields;
    }

    this one sir

    Plugin Contributor Mike Jolley

    (@mikejolley)

    Use the woocommerce_default_address_fields filter. It’s earlier.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customized checkout fields label stay for while and then disable’ is closed to new replies.