The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
One click move thread?
Hi there,
On the forum I manage, we have what we call a 'Breached Content' forum. Instead of deleting inappropriate content, it is moved there. This helps reduce forum clutter caused by 'deleted' messages. Anyway, I was wondering whether it'd be possible to either create a button, or add an option to the thread tools menu, to move a thread straight to 'Breached Content'? This, combined with the postbit banning mod, could reduce the time before advertising messages get removed, and could reduce the impact of what I call a 'goatse attack'. I'm sure this wouldn't be a complicated mod to do, so could anybody out there help? Thanks in advance, Gav |
#2
|
|||
|
|||
This is quite a old thread. Anyway, I found a work around at https://www.vbulletin.com/forum/show...One-click-move
|
#3
|
||||
|
||||
I've also posted the code for this here before, so a search would probably come across the code.
|
#4
|
|||
|
|||
Can you please post a link.
Thanks in advance. |
#5
|
||||
|
||||
Actually I remember Lynne helped me with this back in the day...
https://vborg.vbsupport.ru/showthread.php?t=210513] They still work. :up: |
2 благодарности(ей) от: | ||
AlokSharma, Lynne |
#6
|
|||
|
|||
Hey Buddy,
Thanks a lot. |
#7
|
|||
|
|||
Unfortunately, that code did not work. So I had to modify it as below:
HTML Code:
<vb:if condition="$bbuserinfo['usergroupid'] == 6"> <vb:if condition="$threadinfo['forumid'] == '19'"> <form action="postings.php?do=domovethread&t={vb:raw thread.threadid}" method="post" name="resolved" style="display:inline;"> <input type="hidden" name="s" value="{vb:raw session.sessionhash}" /> <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" /> <input type="hidden" name="t" value="{vb:raw thread.threadid}" /> <input type="hidden" name="do" value="domovethread" /> <input type="hidden" name="title" value="{vb:raw thread.threadtitle}" /> <input type="hidden" name="redirect" value="none" /> <input type="hidden" name="redirecttitle" value="{vb:raw thread.threadtitle}" /> <input type="hidden" name="destforumid" value="31" /> <input type="submit" class="button" value="Resolved" /> </form> <vb:elseif condition="$threadinfo['forumid'] == '32'" /> <form action="postings.php?do=domovethread&t={vb:raw thread.threadid}" method="post" name="resolved" style="display:inline;"> <input type="hidden" name="s" value="{vb:raw session.sessionhash}" /> <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" /> <input type="hidden" name="t" value="{vb:raw thread.threadid}" /> <input type="hidden" name="do" value="domovethread" /> <input type="hidden" name="title" value="{vb:raw thread.threadtitle}" /> <input type="hidden" name="redirect" value="none" /> <input type="hidden" name="redirecttitle" value="{vb:raw thread.threadtitle}" /> <input type="hidden" name="destforumid" value="28" /> <input type="submit" class="button" value="Resolved" /> </form> </vb:if> </vb:if> HTML Code:
<vb:if condition="$threadinfo['forumid'] == '19'">
P.S. I tried the above condition with & without the apostrophe. |
#8
|
||||
|
||||
If it's a number you should never use quotes when testing ==
so PHP Code:
Then it depends what template you are using the code in. I believe $threadinfo was for showthread... what template are you putting the code in? |
#9
|
|||
|
|||
Actually, that condition is not working even without the quotes, so that's why I used the quotes. Anyway, I will remove the quotes.
I am putting that condition in the threadbit template. Since there are two main forums each with open & close sub-forums, I am using a condition so that the thread is moved to its respective sub-forum. |
#10
|
||||
|
||||
Look in the threadbit template then for what the "thread" variable is called. It may be just $thread. I see in your code you use {vb:raw thread.xxx} so that would mean the variable is $thread not $threadinfo... (threadinfo would be {vb:raw threadinfo.xxx})
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|