MyBB Community Forums

Full Version: Profile Comments - User CP settings?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I have the 0.9.2 version of the Profile Comments mod, which is great, but I have one problem.

The option so that users can 'choose who can to comment on their profile' doesn't appear in the User CP. No settings for Profile Comments are shown in the UCP, either.

I thought it had something to do with the 'update,php' file, but that's uploaded in the main directory (is this where it should be)? I've tried deactivating and reactivating, but still nothing.

I've Googled the problem but had no luck finding someone with a similar problem.

Thanks for any help in advance...
Put this in usercp_options template:
<tr>
<td valign="top" width="1">Profile Comments Options: <select name="commentsfilter">
<option value="0">Anyone can comment</option>
<option value="1">Only friends may comment</option>
<option value="2">No one can comment</option></select>
</td>
</tr>

Not sure of the language variables off hand.
Worked perfectly. Thanks!