Deleted/Moderated Posts/Threads Manager - Show more than 4 per page
This modification is in the archives.
Just got this from Jake @ vb.com, and figured others would find it useful, so here you go.
This will allow you to see more than 4 posts/threads per page in the Deleted/Moderated Posts and Deleted/Moderated Threads manager. Edit Template USERCP_SHELL. Add the green code: Code:
<if condition="$show['deleteditems'] OR $show['moderateditems']"> <tr> <td class="thead">$vbphrase[moderation]</td> </tr> <if condition="$show['deleteditems']"> <tr> <td class="$navclass[deletedthreads]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewthreads&type=deleted&pp=X">$vbphrase[deleted_threads]</a></td> </tr> <tr> <td class="$navclass[deletedposts]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewposts&type=deleted&pp=X">$vbphrase[deleted_posts]</a></td> </tr> </if> <if condition="$show['moderateditems']"> <tr> <td class="$navclass[moderatedthreads]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewthreads&type=moderated&pp=X">$vbphrase[moderated_threads]</a></td> </tr> <tr> <td class="$navclass[moderatedposts]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewposts&type=moderated&pp=X">$vbphrase[moderated_posts]</a></td> </tr> The first one is for deleted threads. The second one is for deleted posts. The third one is for moderated threads. The fourth one is for moderated posts. Download No files for download. |