How can I add a new thread button withing a thread?

Gunner

New Member
Hi,

I am looking for a way to have a "create new thread" button on an existing thread sopeople don't have to go back to the category etc..
I found this one:
"Add New Thread Button On ShowThread" in the 1267 Mod-Pack but it's just a .mht file, what would one do please?..

Any help appreciated :)

Many Thanks
 
Here is how to do this with a template replacement code.

edit your "SHOWTHREAD" template.
search for the the following code:

search for:
PHP:
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" 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>


replace by:
PHP:
<td class="smallfont"><a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" border="0" alt="$vbphrase[post_new_thread]" /></a>&nbsp;&nbsp;<a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID"><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>

Done
 
That hit the spot! (THATS WHAT SHE SAID) lol

Thank You very much Prophet. you are the Man of today! well done

glad u resloved your problems ;)
 
Back
Top