Remove the state field in the WooCommerce Checkout

function remove_state_field( $fields ) { unset( $fields[‘state’] ); return $fields; } add_filter( ‘woocommerce_default_address_fields’, ‘remove_state_field’ );

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.