Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
remove 'All Discussions' from title?

is it possible to remove 'All Discussions' from title? if so, please do tell.
thanks
thanks
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
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'
You should create a locale file, check the docs for that.