Never coded in Dol.ver.6.x.x, but it is very easy to do.
This settings can be changed from admin but it does not work now, add this code and then it will work.
Open base/scripts/BxBaseIndex.php
Find function getBlockCode_Members()
Find this lines:
// number of profiles
$max_num = (int) getParam( "top_members_max_num" );
Add a new line bellow it:
// number of profiles
$max_num = (int) getParam( "top_members_max_num" );
$modehome = getParam( "top_members_mode" );
----------------------------------
Find this lines:
if ( $_GET['Mode'] == 'online' or
$_GET['Mode'] == 'rand' or
$_GET['Mode'] == 'last' or
$_GET['Mode'] == 'top' )
$mode = $_GET['Mode'];
else
$mode = 'last';
Edit latest line:
$mode = $modehome;
----------------------------------
Find this lines:
$pages = ceil( $num / $max_num );
$page = (int)$_GET['page'];
if( $page < 1 or $mode == 'last' )
Edit latest line:
if( $page < 1 or $mode == $mode )
----------------------------------
okweb