Log in

View Full Version : Back & Forward buttons below thread


bashy
06-21-2006, 10:00 PM
Hi peeps

This is a very tiny bit of code that adds a back and forward button below the thread
These do the same as your browser does.

You can put the code where you like, I have it here.....

In your showthread template find
<if condition="$show['largereplybutton']"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID" rel="nofollow"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>

Add below
<!-- Foward & Back buttons Start -->
<center>
<input type="button" value=" Back " onClick="history.go(-1)">
<input type="button" value="Forward" onCLick="history.go(1)">
</center>
<!-- Foward & Back buttons End-->

The reason for the spacing for the back button is so that both buttons are about
the same size......

Like i said, you can put this where you like, if anyone can knows of a better
way of coding this then please let me know? Im afraid this is the best i can do.
This is very simple and will take less than 2 mins from entering your admincp :)

I cant see why this wont work on all 3.5 and 3.6 versions, perhaps the older ones as well?

SCORPION1
06-22-2006, 05:48 PM
first shout nice one bashy will give it a try m8 thanx :rolleyes:

Snake
06-23-2006, 11:36 AM
I'll check this out later...

midirtrider
06-26-2006, 11:15 PM
going to give it a try as well.

*clicks intall*

would be nice in diffrent colors though.. Im running the stock colors for VB 3.5.4
how can I recolor the buttons?

peterska2
06-26-2006, 11:19 PM
the code looks like it uses the colors for your CSS buttons class



nice job bashy :)

RFViet
06-28-2006, 08:31 PM
Looks nice