PDA

View Full Version : want to veiw more than 20 cars in the list


djjeffa
02-27-2005, 04:47 PM
is there a way to make the user veiw a list of 30 cares instead of 20 per page?

noppid
02-27-2005, 04:54 PM
is there a way to make the user veiw a list of 30 cares instead of 20 per page?


Sure...

Locate this in vBGarage.php I'm using 4.1.0 beta here for the example.


if ($perpage == 0 or $perpage > 200)
{
$perpage = 20;
}


Change the 20 in this ... $perpage = 20; ... to whatever you want.

That should do it for ya.

djjeffa
03-04-2005, 11:18 PM
Sure...

Locate this in vBGarage.php I'm using 4.1.0 beta here for the example.


if ($perpage == 0 or $perpage > 200)
{
$perpage = 20;
}


Change the 20 in this ... $perpage = 20; ... to whatever you want.

That should do it for ya.
worked great thank you.