Please or Register to create posts and topics.

Change or Hide the Top Menu Heading – Forum

Hi,

Is it possible to change the title Forum in the top menu heading (to the left of Profile) to say Message Board please ?

If not possible, can I remove the word and space called Forum so the first menu heading becomes Profile ?

Thanks for the great plugin !

Stephen

Hello @sjo007

You can add the following css-code to Forum -> Appearance -> Custom CSS to hide the first forum-link:

a.home-link {
    display: none !important;
}

 

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

Many thanks for the reply and help !

Quote from sjo007 on April 14, 2020, 8:02 pm

Hi,

Is it possible to change the title Forum in the top menu heading (to the left of Profile) to say Message Board please ?

If not possible, can I remove the word and space called Forum so the first menu heading becomes Profile ?

Thanks for the great plugin !

Stephen

You can change the name by entering the “forum.php” file of the plugin (should be located in your WP plugin directory). In my file, it was located at line 1663 with the following code:

echo '<a class="home-link" href="'.$this->get_link('home').'">'.__('Forum', 'asgaros-forum').'</a>';

Just change the ‘Forum’ to whatever you need

Hello @katsuro

I suggest you to use the following plugin to change certain strings so you can ensure that your changes will be still available after an update:

Say what?

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