

Settings page – active integrations with hook reference
Vatigo – EU VAT Validator adds EU VAT ID validation to your WordPress forms with zero configuration. Install, activate, done.
AT, BE, BG, CY, CZ, DE, DK, EE, EL, ES, FI, FR, HR, HU, IE, IT, LT, LU, LV, MT, NL, PL, PT, RO, SE, SI, SK
Add [uid_vat uid-field] or [uid_vat* uid-field] (required) to your form template.
Example with placeholder:
[uid_vat* eu-vat-id placeholder "e.g. ATU12345678"]
Drag the EU VAT ID field from the field panel into your form. The field supports required validation, custom labels, placeholder text, and real-time inline feedback while the user types.
Drag the EU VAT ID field from the General Fields section into your form.
WPForms shows real-time validation feedback next to the field. To hide it, add this to your theme’s CSS:
.vatigo-feedback { display: none; }
Register integrations for any other form plugin:
add_action( 'vatigo_register_integrations', function( $manager ) {
$manager->register( new My_Custom_Integration() );
} );
Your class must extend Vatigo_Integration_Base and implement all abstract methods.