Replace
PHP Code:
if(empty($page))
{
$page = 1;
}
$limitvalue = $page * $limit - ($limit);
with
PHP Code:
if (isset($page)
{
$page = 1;
}
//Default lower and upper limit variables
$limitlower = ($page - 1) * $limit + 1;
$limitupper = $page * $limit;
if ($limitupper > $count['count'])
{
//Too many for upper limit
$limitupper = $count['count'];
if ($limitlower > $count['count'])
{
//Too many for lower limit
$limitlower = $count['count'] - $limit;
}
}
if ($limitlower <= 0)
{
//Can't have negative or null lower limit
$limitlower = 1;
}
Or you can read this article which will should a way to use vBulletin functions to create a pagination.
https://vborg.vbsupport.ru/showthrea...t=page+results