MyBB Community Forums

Full Version: Polls
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please help me!

1. Where do I edit "Thread Subscription" in newthread? I would like to make it "Topic Subscription"

2. How can I check the box "I want to post a poll" by default so the members wont have to check the box in my poll forum?
1. ACP >> Templates & Style >> Templates >> Post Templates >> post_subscription_method template

find:
<td class="{$bgcolor}" valign="top">{$lang->thread_subscription_method}</td>

and change as
<td class="{$bgcolor}" valign="top" style = "font-weight:bold;">Topic Subscription</td>


2. ACP >> Templates & Style >> Templates >> New Thread Templates >> newthread_postpoll template

find:
<input type="checkbox" class="checkbox" name="postpoll" value="1" {$postpollchecked} />

replace as:
<input type="checkbox" class="checkbox" checked="checked" name="postpoll" value="1" {$postpollchecked} />
Thanks mmadhankumar!

oops sorry is there a way to check the poll option for only one forum?