RANDOM MEMBER MODULE FOR DOLPHIN 7.08 AND 7.09

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        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;

 

Quote · 27 Jan 2012

the above mod make the following changes

MOD: Display random members /Users with photo first

Quote · 27 Jan 2012

 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        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;

 

 The original mod was made by Prolaznik and modified for dolphin 7.0.8 and dolphin 7.0.9

Quote · 27 Jan 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.