Hi,
1. For "Blog" setup option do this :
Open "templates/base/scripts/BxBaseIndex.php"
find these strings :
$mode = $_REQUEST['blogs_mode'];
if( $mode != 'rand' and $mode != 'latest' and $mode != 'top' )
$mode = 'latest';
and replace on :
$mode = $_REQUEST['blogs_mode'];
if( $mode != 'rand' and $mode != 'latest' and $mode != 'top' )
$mode = 'rand';
2. For "Profile Photos" setup option do this :
Open "templates/base/scripts/BxBaseIndex.php"
find these strings :
if ( $_GET['Mode_p'] == 'rand' or
$_GET['Mode_p'] == 'last' or
$_GET['Mode_p'] == 'top' )
$mode = $_GET['Mode_p'];
else
$mode = 'last';
and replace on :
if ( $_GET['Mode_p'] == 'rand' or
$_GET['Mode_p'] == 'last' or
$_GET['Mode_p'] == 'top' )
$mode = $_GET['Mode_p'];
else
$mode = 'rand';