PDA

View Full Version : Mini Mods - Vbadvanced Recent Thread pagination


felixthekat85
11-24-2011, 11:00 PM
This is one modification I made to recenthread.php to display a pagination as news.php

I'm no expert on this, in fact. I do not know anything. I'm sure someone with more knowledge, can upgrade.

Sorry my bad english

Modules/recentthreads.php
Find
if ($mod_options['portal_threads_maxthreads'])
{
Add after

/////PAGINATION By Felixthekat////////////
$perpage = 10;
$itemcount = $db->query_first("SELECT count(thread.threadid) as itemcount FROM " . TABLE_PREFIX . "thread as thread
$rthread_join
WHERE open != 10
AND thread.visible = 1 " .
iif($mod_options['portal_threads_cutoffdate'],
'AND thread.lastpost > ' . (TIMENOW - $mod_options['portal_threads_cutoffdate'] * 86400)
) .
iif($ignusers,
' AND thread.postuserid NOT IN(' . $ignusers . ')'
) . "$vba_threads_condition");

$pagenumber = $vbulletin->input->clean_gpc('r', 'pagenumber', TYPE_UINT);
sanitize_pageresults($itemcount['itemcount'], $pagenumber, $perpage,$perpage,$perpage);
$limitlower = ($pagenumber - 1) * $perpage + 1;
$limitupper = $pagenumber * $perpage;

if ($limitupper > $itemcount['itemcount'])
{
$limitupper = $itemcount['itemcount'];
if ($limitlower > $itemcount['itemcount'])
{
$limitlower = $itemcount['itemcount'] - $perpage;
}}

if ($limitlower <= 0)
{
$limitlower = 1;
}

$pagenav = construct_page_nav($pagenumber, $perpage, $itemcount['itemcount'], 'index.php?');
/////////////////////////////////

Find
LIMIT $mod_options[portal_threads_maxthreads]
Replace
LIMIT " . ($limitlower - 1) . ", $perpage

Go to Admincp > Styles and Templates > Your template > Templates of vbadvanced CMPS > adv_portal_recthreads_exp_head
add to the end
<tr>
<td>
$pagenav
</td>
</tr>

Enjoy!!

Screenshot

v123shine
11-26-2011, 01:42 PM
Good idea...like it bro :)

vijayninel
11-26-2011, 04:24 PM
Nice mod... :)

Lustikus
01-25-2012, 10:11 AM
can anybody pls update to vb 4.x ???

too_cool_3
08-08-2012, 01:36 PM
Anyone capable of updating this to work in vB4? Would be much appreciated.

mahmo0od
09-27-2012, 01:29 AM
thank u friend
good job

matrex722
11-10-2012, 12:33 PM
Wow thanks for this
i think i gonna use it

al2thero
11-13-2012, 06:28 AM
i will try it

al2thero
11-25-2012, 06:51 PM
thank u friend

viper357
10-14-2014, 08:29 AM
This seems to only be partially working on vb 3.8.5 and vba 3.2.1. The pagenav is not showing up, just a blank line.

Is there anybody out there that can have a look and provide a fix? Pretty please? :)

RELAX13
10-29-2014, 12:05 PM
Good Id :D