Customizing checkout fields on 2 columns in Woocommerce cart page
问题 After the new WooCommerce update checkout fields columns are acting strangely. That are my checkout fields customizations: add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['billing']['billing_address_2']); return $fields; } // Checkout placeholder add_filter( 'woocommerce_checkout_fields' , 'override_billing_checkout_fields', 20, 1 ); function override_billing_checkout_fields( $fields ) {