WooCommerce Change Form Labels and Remove Fields

后端 未结 3 1159
终归单人心
终归单人心 2021-01-20 06:16

I\'m trying to customise WooCommerce checkout page, how can I edit field labels?

Also, how can I remove 2 fields from the form? I don\'t need Company an

3条回答
  •  猫巷女王i
    2021-01-20 06:29

    Here is a working hook that you need to add into your theme's functions.php file

    add_filter( 'woocommerce_checkout_fields' , 'remove_checkout_fields' );
    
    function remove_checkout_fields( $fields ) {
        unset($fields['billing']['billing_state']);
        unset($fields['billing']['billing_company']);
        unset($fields['billing']['billing_country']);
        return $fields;
    }
    

提交回复
热议问题