~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Random member module Installation instructions for 7.0.8 and 7.0.9
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
files to edit \templates\base\scripts\ BxBaseIndexPageView.php
look for this code around line 347
// top menu and sorting
$aModes = array('last', 'top', 'online');
change to
// top menu and sorting
$aModes = array('last', 'top', 'rand', 'online');
around line 353 you need to change the display order
$sMode = (in_array($_GET[$sBlockName . 'Mode'], $aModes)) ? $_GET[$sBlockName . 'Mode'] : $sMode
= 'last';
change that 'last' to rand
find this code around line 365
case 'last':
if ($sMode == $sMyMode)
$sqlOrder = " ORDER BY `Profiles`.`Couple` ASC, `Profiles`.`DateReg` DESC";
$sModeTitle = _t('_Latest');
break;
add this code bellow it
case 'rand':
if ($sMode == $sMyMode)
$sqlOrder = " ORDER BY `Profiles`.`Couple` ASC, `Profiles`.`Avatar` <> 0
DESC, RAND()";
$sModeTitle = _t('_Random');
break;