Change or Hide the Top Menu Heading – Forum
Quote from sjo007 on April 14, 2020, 8:02 pmHi,
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
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
Quote from Asgaros on April 20, 2020, 3:57 amHello @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; }
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; }
Quote from Katsuro on April 26, 2020, 8:16 pmQuote from sjo007 on April 14, 2020, 8:02 pmHi,
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
Quote from sjo007 on April 14, 2020, 8:02 pmHi,
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
Quote from Asgaros on May 6, 2020, 3:48 amHello @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:
https://wordpress.org/plugins/say-what/
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: