Hello everyone, quick question;
What about multiple pagination instances on the same template for example?
I am having a bit of trouble with the second and third instances. I created 3 separate files and inserted them into the same template as plugins. Using three instances of:
HTML Code:
<vb:if condition="$pagenav">
<div id="pagination_top">
{vb:raw pagenav}
</div>
</vb:if>
Like so:
HTML Code:
<div id="test" class="block collapse">
<div class="blocksubhead">My First Place Trophies ({vb:raw oftw_firstplace_times})<a class="collapse" id="collapse_cel_dummy" href="{vb:raw relpath}#top" style="top: 5px;"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_cel_dummy_img}_40b.png" /></a></div>
<div class="blockrow" id="cel_dummy">
<center>{vb:raw oftw_get_mytrophies}</center>
<vb:if condition="$pagenav1">
<div id="pagination_top1" style="float: right; margin-bottom: 27px; margin-right: 5px;">
<center>{vb:raw pagenav1}</center>
</div>
</vb:if>
</div>
</div>
<div id="test" class="block collapse">
<div class="blocksubhead">My Second Place Trophies ({vb:raw oftw_secplace_times})<a class="collapse" id="collapse_cel_dummy2" href="{vb:raw relpath}#top" style="top: 5px;"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_cel_dummy_img}_40b.png" /></a></div>
<div class="blockrow" id="cel_dummy2">
<center>{vb:raw oftw_get_mysectrophies}</center>
<vb:if condition="$pagenav2">
<div id="pagination_top2" style="float: right; margin-bottom: 27px; margin-right: 5px;">
<center>{vb:raw pagenav2}</center>
</div>
</vb:if>
</div>
<div id="test" class="block collapse">
<div class="blocksubhead">My Third Place Trophies ({vb:raw oftw_thirdplace_times})<a class="collapse" id="collapse_cel_dummy3" href="{vb:raw relpath}#top" style="top: 5px;"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_cel_dummy_img}_40b.png" /></a></div>
<div class="blockrow" id="cel_dummy3">
<center>{vb:raw oftw_get_mythirdtrophies}</center>
<vb:if condition="$pagenav3">
<div id="pagination_top3" style="float: right; margin-bottom: 27px; margin-right: 5px;">
<center>{vb:raw pagenav3}</center>
</div>
</vb:if>
</div>
The PHP files are nearly identical except of course the $pagenav variable and some database reads, etc. The pagination for the first place trophies works perfect but the other two don't . When clicking on page 2 of the second place trophies it takes you to page 2 in the URL but in the pagination in stays in page 1 and shows the content of page 1, this for both second place and third place trophies. If anyone can help I can gladly post the php files if need be.

Any info is good info. Thanks for your time guys.