Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CoachBirgit/5ced8e0a41d5bf94127c to your computer and use it in GitHub Desktop.
Save CoachBirgit/5ced8e0a41d5bf94127c to your computer and use it in GitHub Desktop.
add_action('um_submit_form_errors_hook', 'check_customer_code', 100 );
function check_customer_code( $args ){
if ( isset( $args['customer_code'] ) && $args['customer_code'] != 'ABCDE' )
exit( wp_redirect( add_query_arg('err', 'invalid_customer_code') ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment