PDA

View Full Version : [How To] display review pages in forum?


Asasi
08-28-2006, 05:24 PM
in my review type forum I have some threads that contains many pages but in forumdisplay page only display revire title and then click it it will go to first page of thread (review) how can I display pages and latest page in forumdisplay like forums .. like this : (pages 1,2,3,4,5...last page)

thanks a lot

The Geek
08-28-2006, 06:50 PM
Try putting this in your GARS_threadbit template (after the title):


<if condition="$thread['pagenav']">$stylevar[dirmark]<span class="smallfont" style="white-space:nowrap">(<img class="inlineimg" src="$stylevar[imgdir_misc]/multipage.gif" alt="$vbphrase[multipage_thread]" border="0" /> $thread[pagenav]<if condition="$show[pagenavmore]"> ... <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&amp;page=$thread[totalpages]$thread[highlight]">$vbphrase[last_page]</a></if>)</span></if>

Asasi
08-28-2006, 06:57 PM
Try putting this in your GARS_threadbit template (after the title):


<if condition="$thread['pagenav']">$stylevar[dirmark]<span class="smallfont" style="white-space:nowrap">(<img class="inlineimg" src="$stylevar[imgdir_misc]/multipage.gif" alt="$vbphrase[multipage_thread]" border="0" /> $thread[pagenav]<if condition="$show[pagenavmore]"> ... <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&amp;page=$thread[totalpages]$thread[highlight]">$vbphrase[last_page]</a></if>)</span></if>

Thats it
thanks a lot