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.
How change tab name in profile?
batters
New
I cant change name of tab "aboutme" in profile, tryed add in Definition.php file this string $Definition['aboutme'] = 'About Me';
but name of tab dont changed and still called 'aboutme'
but name of tab dont changed and still called 'aboutme'
Tagged:
0
Best Answer
-
In 'default.php', around line 28, I did this:
public function ProfileController_AddProfileTabs_handler(&$Sender) {
$Sender->AddProfileTab('About Me', "/profile/aboutme/".$Sender->User->UserID."/".Gdn_Format::Url($Sender->User->Name), 'AboutMe', 'About Me');
$Sender->AddCssFile('/plugins/AboutMe/design/am.default_theme.css');
}0
Answers
public function ProfileController_AddProfileTabs_handler(&$Sender) {
$Sender->AddProfileTab('About Me', "/profile/aboutme/".$Sender->User->UserID."/".Gdn_Format::Url($Sender->User->Name), 'AboutMe', 'About Me');
$Sender->AddCssFile('/plugins/AboutMe/design/am.default_theme.css');
}