Customizing SMF > Tips and Tricks

Disable members from hiding their online status

<< < (2/2)

dschwab9:

--- Quote from: ashlar on April 29, 2004, 07:41:45 AM ---How is this done?  Thanks in advance!

--- End quote ---

Find in themes/profile.template.php:

--- Code: --- echo '
<tr>
<td width="40%"><b>', $txt['show_online'], '</b></td>
<td><input type="hidden" name="showOnline" value="0" /><input type="checkbox" name="showOnline"', $context['member']['show_online'] ? ' checked="checked"' : '', ' value="1" class="check" /></td>
</tr>';
--- End code ---

And replace with:

--- Code: ---if ($context['user']['is_admin'])
echo '
<tr>
<td width="40%"><b>', $txt['show_online'], '</b></td>
<td><input type="hidden" name="showOnline" value="0" /><input type="checkbox" name="showOnline"', $context['member']['show_online'] ? ' checked="checked"' : '', ' value="1" class="check" /></td>
</tr>';
--- End code ---

That should only show that option to admins.  Untested, but I don't see why it wouldn't work.

ashlar:
thanks!!

Navigation

[0] Message Index

[*] Previous page

Go to full version