in the page browse profiles
it is possible to have random members
open browse.php anf find $profiles_list_query and add RAND(), to it, like below
$profiles_list_query = "SELECT `ID`, `NickName`, `Sex`, `DateOfBirth`, `FullName`, `Couple` FROM `Profiles` WHERE {$sql_add} AND `Profiles`.`Status`='Active' ORDER BY `Couple` ASC, RAND(), `Picture` DESC LIMIT {$real_first_p}, {$p_per_page}";
members without a photo will be mixed with members with photos
==========================================
in the block on the home page - members
it is possible to have - the members in online and random
Member online:
Settings/Basic Settings and below Index page settings
Show members on index page: Chang it from Rand to Online Members
and Random:
templates/base/scripts/BxBaseIndex.php
find function getBlockCode_Members
and add this code to the sql query below: , RAND()
case 'online':
if( $mode == $myMode )
$filter = " FROM `Profiles` WHERE `DateLastNav` > SUBDATE(NOW(), INTERVAL ".(int)getParam( "member_online_time" )." MINUTE) AND `Status` = 'Active' $query_add ORDER BY `Couple` ASC, RAND()";
$modeTitle = _t('_Online');
break;
==========================
in the browse page - photos - videos - music
how to change /all/10/1
You need to change it several place I think, maybe I look more on it!!!!