
Originally Posted by
Sonomaa
no we cant fix the 1 2 3 ... 7 8 9 like it was, itll be 1 2 3 Last Page until we get a plugin for it
This is a little bit hackish, but you can fix it without a plugin. You can edit the threadbit template (in the Threadbit Templates section of the Edit Templates section of the Style Manager) and replace the default ...
Code:
<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]&page=$thread[totalpages]$thread[highlight]">$vbphrase[last_page]</a></if>)</span></if>
... with something like:
Code:
<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]"> ... <if condition="$pagesminus2 = $thread[totalpages] - 2"><if condition="$pagesminus1 = $thread[totalpages] - 1"><if condition="$pagesminus2 > 7"><a href="showthread.php?$session[sessionurl]t=$thread[threadid]&page=$pagesminus2$thread[highlight]">$pagesminus2</a> <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&page=$pagesminus1$thread[highlight]">$pagesminus1</a> <a href="showthread.php?$session[sessionurl]t=$thread[threadid]&page=$thread[totalpages]$thread[highlight]">$thread[totalpages]</a><else /><a href="showthread.php?$session[sessionurl]t=$thread[threadid]&page=$thread[totalpages]$thread[highlight]">$thread[totalpages]</a></if></if></if></if>)</span></if>
(there's probably a slightly better way to accomplish the same thing, but this works).
You'd have to do that in all styles. I generally recommend that you make all styles children of the default style that way in most cases you only have to make template changes to the default style and the children styles will inherit them.