Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function maybe_skip_import( $user_meta, $contact_id ) {
- $tags = wp_fusion()->crm->get_tags( $contact_id );
- if ( in_array( 'No Import', $tags ) || in_array( 'No Import 2', $tags ) || in_array( 'No Import 3', $tags ) ) {
- return null;
- }
- return $user_meta;
- }
- add_filter( 'wpf_import_user', 'maybe_skip_import', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement