Forum breadcrumbs – You are here:Asgaros Support ForumSupportModifying log in screen
Please or Register to create posts and topics.

Modifying log in screen

How do I modify the default message; “Sorry, only logged in users have access to the forum.” seen before a user logs in?

Hello bryanw,

please add the following code to your themes functions.php file to modify the message:

function my_login_message () {
  return 'My message ...';
}
add_filter('asgarosforum_filter_error_message_require_login', 'my_login_message');

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!