How to modify your Front end Manager login page.
Here’s how to disable the registration.
Go to WordPress General Settings and uncheck Anyone can register.
Here’s how to remove password reset.
Please add this to your current theme or child theme functions.php
function wps_disable_password_reset() { return false; } add_filter ( 'allow_password_reset', 'wps_disable_password_reset' ); function remove_lostpassword_text ( $text ) { if ($text == 'Lost your password?'){$text = '';} return $text; } add_filter( 'gettext', 'remove_lostpassword_text' );