Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save webdados/6808ba594b6296cc93100b77d29927ed to your computer and use it in GitHub Desktop.
Save webdados/6808ba594b6296cc93100b77d29927ed to your computer and use it in GitHub Desktop.
InvoiceXpress for WooCommerce change VAT field class
<?php
// Add to your child theme functions.php file
add_filter( 'woocommerce_checkout_fields', function( $fields ) {
if ( isset( $fields['billing']['billing_VAT_code'] ) ) $fields['billing']['billing_VAT_code']['class'] = array( 'form-row-first' );
return $fields;
}, 60 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment