How can I make it so that a poll is required to be made for posts in a specific category?
Announcement
Collapse
No announcement yet.
Require a poll in a category?
Collapse
X
-
There is no feature for this. Custom code is required. If you have some coding ability then you can post on www.vbulletin.org for help with this.
-
Hey, if I can get this if conditional statement to work then I will be set...
In the newthread template:
Code:<if condition="$forum[forumid] == '2'"> <input type="checkbox" name="postpoll" value="yes" id="cb_postpoll" tabindex="1" checked disabled /> <else /> <input type="checkbox" name="postpoll" value="yes" id="cb_postpoll" tabindex="1" $checked[postpoll] /> </if>
Comment
-
Originally posted by Jake Bunce View PostTry using just $forumid or $GLOBALS[forumid].
The user will still be able to uncheck that box.
I changed the input type from checkbox to hidden and it works fine. I used $foruminfo[title] == 'thread' and that works perfectly.
The only problem I have now is that after the thread is posted and the redirect to the poll creation page is made, the user can simply exit out of the page and the thread will still sit without a poll.
Anyway to have the thread not created unless the poll is submitted?
Comment
Related Topics
Collapse
-
Can I set the "Make Poll Public" option as default? I have been getting questions about how to change this when users have already made the poll, so i'm assuming they are not reading the options,...
-
Channel: Support Issues & Questions
Wed 25 May '16, 11:00am -
Comment