The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Create posts but not threads
Is it possible to allow members to create posts but not threads?
We are using a forms mod that posts to a section which we don't want people to open new threads in, but we want them to reply to the forms. |
#2
|
||||
|
||||
I use a similar forms modification. What I did was add an if conditional (my favorite suggestion today, apparently) to the New Thread button which will instead show a link to starting a new form when in that forum, rather than the New Thread button. You need the vB4 specific conditionals for this (I did this on vB3), but if you can look them up and replace them, you can do something similar. This is in your FORUMDISPLAY template. The red parts are the parts I added:
Code:
<if condition="$show['newthreadlink']"> <if condition="$forumid == 3"> <a href="misc.php?$session[sessionurl]do=form&fid=1" rel="nofollow" style="font-size:13px">New Form</a> <else /> <a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a> </if><else /> </if> |
#3
|
||||
|
||||
Quote:
|
#4
|
||||
|
||||
It depends on how the forms modification works. Unless it somehow bypasses posting permissions, you would need permissions to be turned on to allow the form to be posted as a thread to that forum in the first place. Only other way that would work is if the users replying to those threads just so happen to be in a different usergroup than the people allowed to fill out the forms and start those threads. But odds are, you'd still new the New Thread posting permissions to stay intact.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|