Please or Register to create posts and topics.

Welcome message

How can we add welcome, user login to create topic.

If login it you get

Welcome, username.

 

Hello @mrfresh

You can add custom output to certain views with a code like this:

function custom_content() {
  if (!is_user_logged_in()) {
    echo 'My custom content ...';
  } else {
    echo 'Welcome!';
  }
}
add_action('asgarosforum_overview_custom_content_top', 'custom_content');

Just add it to your themes functions.php-file.

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