• Hi all wordpress noob here i installed and setup the plugin to password the site which is working great.

    only thing is it does not show the login_message, it does show the message if you hit the /wp-admin page but not the general page.

    any help would be greatly appreciated.

Viewing 1 replies (of 1 total)
  • Try something like this in functions.php or another plugin:

    add_filter(‘password_protected_login_message’, ‘my_password_protected_modifier_add_login_message’);

    function my_password_protected_modifier_add_login_message( $messages ) {

    $my_message = “<div class=’message’>YOUR MESSAGE HERE</div>”;

    return $messages . $my_message;

    }

Viewing 1 replies (of 1 total)
  • The topic ‘show message on password protected site’ is closed to new replies.