Please or Register to create posts and topics.

SEO description for forum main page

Hello,

Is there any possibilities to add a description to the forum main page? Most important is this for seo which now is a little simple with just forum page title going into all meta tags.

Brgds

Hello @metuza

If you want to change the description for the overview manually, you can try to add the following code to the end of your themesĀ functions.php file and adjust the description inside of it:

function change_overview_description() {
  global $asgarosforum;

  if ($asgarosforum->current_view === 'overview') {
    $asgarosforum->current_description = 'My description ...';
  }
}
add_action('template_redirect', 'change_overview_description');

 

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

Thank you @asgaros, that did the trick.

Brgds

Asgaros has reacted to this post.
Asgaros