Code-Snippets-Functions/Execute a function on a child site/WooCommerce/make-address-fields-wider.txt

9 lines
303 B
Text

add_filter('woocommerce_billing_fields', 'custom_woocommerce_billing_fields');
function custom_woocommerce_billing_fields( $fields ) {
$fields['billing_address_1']['class'] = array( 'form-row-wide' );
$fields['billing_address_2']['class'] = array( 'form-row-wide' );
return $fields;
}