Change Notable Member default

abbychase

Active member
Licensed customer
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
 
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
I'd like to just make the default tab the staff one. So it starts on that one.
 
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'
 
Back
Top Bottom