Change Notable Member default

abbychase

Active member
Hello,

How would I go about changing the default tab from most messages to staff members on the notable members tab?

Thanks a ton!
 
Last edited:
change tab title or tab content? If that's tab title just simple to change the value of phrase :/ But with tab content I think you need an addon to do that
 
If someone still looking for this, I found a way to do it :
in /library/XenForo/ControllerPublic/member.php

find :

Code:
else
        {
            $result = $this->_getNotableMembers($type, $limit);
            if (!$result)
            {
                $type = 'messages';
                $result = $this->_getNotableMembers($type, $limit);
            }

            list($users, $bigKey) = $result;

replace 'messages' by 'points' or 'staff' or 'likes'
 
Top Bottom