Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 687

Require users to agree that this is the best section for their topic

$
0
0
This modification will require users to agree that the believe this forum is the best section for their topic.

1. Go to the newthread template and find:

Code:
<td class="trow2">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>

2. Replace it with this:

Code:
<td class="trow2">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /><input type="checkbox" class="input_control"  value="subject" /><strong>I believe {$forum['name']} is the best section for this topic.</strong></td>

3. Insert this at the end right before </body>:

Code:
<script type="text/javascript">
$(document).ready(function () {
       $('.input_control').change(function () {
           $('input[name=' + this.value + ']')[0].disabled = !this.checked;
       }).change();
    });
</script>
<style type="text/css">
    input.textbox:disabled {
        background: #DDD;
       }
</style>

4. All done! Smile


.png   DSCj8qC.png (Size: 7.21 KB / Downloads: 53)

.png   xUN45rA.png (Size: 7.18 KB / Downloads: 61)

Viewing all articles
Browse latest Browse all 687

Trending Articles