People - All Members number of page change

Anyone know where or how to change the number of members being displayed on the People - All Members page? I would like to change the count from 50 to 48. Thanks....

Michael
Quote · 22 Dec 2012

Anyone with this? I know it is simple, I just can't find it lol. When I go to People/All Members, I want to change the number of members from 50 to 48. I have 3 columns and it shows and empty space with a count of 50. Thank in advance for your help. 

Michael
Quote · 28 Dec 2012

I have the same question, want to reduce the limit...!!!

Quote · 28 Dec 2012

edit your browse.php.

 

        if ( $sInfoMode == 'extended' )

                $iPerPage = 15;

        else

                $iPerPage = 70;

    }

Quote · 28 Dec 2012

Thanks for the reply Foo, i guess there is no other way to do this. I have made so many mods that my list is getting crazy, between mods for my template and the main system, i was hoping that I did not have to do it again :P Do you know if this will affect other lists as well? Thanks again for your help. 

Michael
Quote · 28 Dec 2012

no, it's just for the people browse lists. one for simple (15), one for extended (70) which are my settings.

Quote · 28 Dec 2012

Sweet, thank you. 

Michael
Quote · 28 Dec 2012

 

edit your browse.php.

 

        if ( $sInfoMode == 'extended' )

                $iPerPage = 15;

        else

                $iPerPage = 70;

    }

 Hello Foo, I tried this but nothing has happened...!!!

Quote · 29 Dec 2012

 

 

edit your browse.php.

 

        if ( $sInfoMode == 'extended' )

                $iPerPage = 15;

        else

                $iPerPage = 70;

    }

 Hello Foo, I tried this but nothing has happened...!!!

     if ( isset($_GET['per_page']) ) {
        $iPerPage = (int) $_GET['per_page'];
    } else {
        if ( $sInfoMode == 'extended' )
            $iPerPage = 10;
        else
            $iPerPage = 50;
    }

    if($iPerPage <= 0)
        $iPerPage = 50;

change both 50's

Quote · 29 Dec 2012

 

 

 

 

edit your browse.php.

 

        if ( $sInfoMode == 'extended' )

                $iPerPage = 15;

        else

                $iPerPage = 70;

    }

 Hello Foo, I tried this but nothing has happened...!!!

     if ( isset($_GET['per_page']) ) {
        $iPerPage = (int) $_GET['per_page'];
    } else {
        if ( $sInfoMode == 'extended' )
            $iPerPage = 10;
        else
            $iPerPage = 50;
    }

    if($iPerPage <= 0)
        $iPerPage = 50;

change both 50's

 

Can we do the change in drop down box, which says Per Page at the right on browse.php

 

Quote · 29 Dec 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.