mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
303 B
Text
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;
|
|
}
|