/** * WP-Members does not assume any user is activated, including * administrators (with the exception of the admin who enables * the moderated registration setting, who is marked as activated * when enabling the setting). There are good reasons for this, * but in some cases, you may wish to have any administrator * automatically viewed as "activated" in which case you can * use the following: */ add_filter( 'wpmem_is_user_activated', function( $is_activated, $user_id ) { if ( wpmem_user_has_role( 'administrator', $user_id ) ) { $is_activated = true; } return $is_activated ; }, 10, 2 );
Not sure what to do with this code?
You're not a "coder" and don't know what to do? Don't worry! Code Snippets are the basic building blocks of WordPress customization, and once you know the basics, they are simple to use.
Here are some free articles to get you started:
- Using Code Snippets from the Site
- Using a code snippets plugin
- The functions.php File
- Create a plugin file for custom functions
- Create a child theme
- Do not modify plugin files!
For "hands on" help, consider a plugin support subscription or the Pro Bundle.