XF 1.5 Changing the number of the newest members in the sidebar

Thank you for the suggestions. They are interesting.

I tend to stay away from extra functionality and complexity that is not needed for the forum. In this particular case, I would just edit one digit if I knew where it is.
 
Thank you for the suggestions. They are interesting.

I tend to stay away from extra functionality and complexity that is not needed for the forum. In this particular case, I would just edit one digit if I knew where it is.
can you explain like properly what exacly are you looking for
 
Navigation Bar > Members > Notable Members > Sidebar > Newest Members (avatar heap)

or​

Navigation Bar > Members > Registered Members > Sidebar > Newest Members (avatar heap)

How/where does one change the number of the avatars shown under Newest Members.
 
I've finally discovered where it is.

In library/XenForo/ControllerPublic/Member.php, this line has to be edited:

PHP:
$latestUsers = $userModel->getLatestUsers($criteria, array('limit' => 8));
 
Top Bottom