PDA

View Full Version : Move Thread Addon on first post


seandan
10-19-2010, 02:22 PM
I find it annoying that every time when I need to move a thread I have to click a whole bunch of links.

Is it possible for only Moderators - Admins be able to move the thread without clicking all those links. Like add a Move Thread function to the first post like a tool bar that only mods and admins can see.

BirdOPrey5
10-19-2010, 10:23 PM
Under "thread tools" there is "move thread" you don't need to click any links? You mean too many steps needed to move a thread? Without those steps how would you choose where to move it?

Lynne
10-19-2010, 11:18 PM
I added a couple of buttons to move a thread to two different pre-defined forums on my site. You can't do it with a link, you need to use a form.

Page source:
<form action="postings.php?do=domovethread&amp;t=xxxxxx" method="post" name="xxxxxx" >
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="xxxxxx" />
<input type="hidden" name="t" value="xxxxxx" />
<input type="hidden" name="do" value="domovethread" />
<input type="hidden" name="title" value="xxxxxx" />
<input type="hidden" name="redirect" value="xxxxxx" />
<input type="hidden" name="redirecttitle" value="xxxxxx" />
<input type="hidden" name="destforumid" value="xxxxxx" />
<input type="submit" class="button" value="xxxxxx" />
</form> Just replace the stuff in red with the correct variables and it should work.