How to hide the Registration tab?

You could hide the Registration tab in 3 ways:

1. Disable registration on your website in wp-admin

2. Hide both login and registration tab

3. Add code to your child theme functions.php, for example:

add_filter('lrm/users_can_register', '__return_false' );

Related Articles

Leave A Comment?