Page 1 of 1

Increase amount of items listed...

PostPosted: Tue Mar 01, 2011 11:07 pm
by ScottCA
How can I increase the amount of items listed from the default of "30" to "40"?

Thank you in advance,
~Scott

Re: Increase amount of items listed...

PostPosted: Wed Mar 02, 2011 12:32 pm
by shannah
Add the following (or something like it) to the beginning of your index.php file:
Code: Select all
if ( !@$_REQUEST['-limit'] ){
    $_GET['-limit'] = $_REQUEST['-limit'] = 40;
}

Re: Increase amount of items listed...

PostPosted: Wed Mar 02, 2011 12:37 pm
by ScottCA
Awesome! That worked! Thanks so much for the quick response!

*PS: Excellent script!