Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 18

CurtisOdenericgillette +16 guests

How change tab name in profile?

This discussion is related to the AboutMe addon.
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'
Tagged:

Comments

  • rprrpr
    Posts: 21 Accepted 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');
    }
  • Posts: 164
    ah, the very last 'About Me', on the third line down above, is the HTML that is displayed. I am not sure why I did not use translate there, perhaps it did not work. This is what you would have to change.
Sign In or Register to comment.