Category User Verification

How to check user verification status?

How to check user verification status? 4

Here is the code you can check by user id for verification status. so you can execute 3rd party active based on user verified or not. $current_user = wp_get_current_user(); $user_id = $current_user->ID; $approved_status = get_user_meta($user_id, ‘user_activation_status’, true); if ( $approved_status…

How to setup plugin?

How to setup plugin? 5

Here is the quick guide will help you to setup plugin for active user verification. Step -1: After install & activate the plugin please create a page and use following shortcode under content. [user_verification_check]     Step – 2: And…