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&noquote=1&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?
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&noquote=1&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?