jonty
05-27-2010, 10:00 PM
Members wanting the (showthread) 'Go' button back?
I never used it myself, but our members use it to jump back to the forum that the thread is on.
Now that the forumjump has changed, the 'Go' button has been removed.
So, to create a replacement button that jumps back to the forum the current thread is in:
In the SHOWTHREAD template, find
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
{vb:raw forumjump}
</div>
</div>
and replace with:
<a href="{vb:link forum, {vb:raw thread}, null, 'forumid', 'forumtitle'}" class="button" style="float:{vb:stylevar right}; font-size:11px; margin:10px;"><b>{vb:rawphrase go}</b> Back to forum</a>
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
{vb:raw forumjump}
</div>
</div>
I never used it myself, but our members use it to jump back to the forum that the thread is on.
Now that the forumjump has changed, the 'Go' button has been removed.
So, to create a replacement button that jumps back to the forum the current thread is in:
In the SHOWTHREAD template, find
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
{vb:raw forumjump}
</div>
</div>
and replace with:
<a href="{vb:link forum, {vb:raw thread}, null, 'forumid', 'forumtitle'}" class="button" style="float:{vb:stylevar right}; font-size:11px; margin:10px;"><b>{vb:rawphrase go}</b> Back to forum</a>
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
{vb:raw forumjump}
</div>
</div>