remove 'All Discussions' from title?

is it possible to remove 'All Discussions' from title? if so, please do tell.
thanks
thanks
There was an error rendering this rich post.
Tagged:
0
Best Answer
-
luc ✭✭
It's from there apparantly:
applications/vanilla/controllers/class.discussionscontroller.php: $this->Title(T('All Discussions'));
It's under Translation, so you could just translate it to whatever you want (nothing or something else) using a locale file.0
Answers
http://vanillaforums.org/discussion/12925/change-text-and-buttons-to-say-something-else/p1
There was an error rendering this rich post.
There was an error rendering this rich post.
applications/vanilla/controllers/class.discussionscontroller.php: $this->Title(T('All Discussions'));
It's under Translation, so you could just translate it to whatever you want (nothing or something else) using a locale file.
$this->Title(T('All Discussions'));
to this:
$this->Title(T('-'));
and the title remains the same:
All Discussions - My forum name
I want to remove 'All Discussions'
There was an error rendering this rich post.
You should create a locale file, check the docs for that.