MyBB Community Forums

Full Version: Rep System
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I was wondering if there was any way to stop people from using No Comment as the comment for the reputation system, or even possibly adding in a drop down box where they would have to pick from the list a reason?
to change the text box into a drop down... goto reputation_add template in ACP and find

<span class="smalltext">{$lang->user_comments}</span>
<br />
<input type="text" class="textbox" name="comments" size="35" maxlength="250" value="{$comments}" style="width: 95%" />

replace that as something below....
<span class="smalltext">{$lang->user_comments}</span>
<br />
<select>
  <option value="option1">option1</option>
  <option value="option2">option2</option>
  <option value="option3">option3</option>
</select>
Cheers, ill give it a try later when I'm back
(2013-01-10, 09:24 AM)Scotty1207 Wrote: [ -> ]Hi,

I was wondering if there was any way to stop people from using No Comment as the comment for the reputation system, or even possibly adding in a drop down box where they would have to pick from the list a reason?

Isn't that configurable in the ACP >settings>Rep ?