Skip to content

Instantly share code, notes, and snippets.

@cartpauj
Created February 5, 2021 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cartpauj/e465c1a83106cca8eb5e81711121dd51 to your computer and use it in GitHub Desktop.
Save cartpauj/e465c1a83106cca8eb5e81711121dd51 to your computer and use it in GitHub Desktop.
Force MemberPress user VAT type to business
<?php
function force_business_vat_type($user) {
update_user_meta($user->ID, 'mepr_vat_customer_type', 'business');
}
add_action('mepr-signup-user-loaded', 'force_business_vat_type');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment