I would like to hide the local time in the profiles of the admins from the general public. How would I do this?
Find and remove from the Profile template:
</tr><tr>
<td><b>', $txt['local_time'], ':</b></td>
<td>', $context['member']['local_time'], '</td>
-[Unknown]
I don't want to remove ALL local time, only the local time of the ADMINs
Replace with:
';
if ($context['member']['group_id'] != 1)
echo '
</tr><tr>
<td><b>', $txt['local_time'], ':</b></td>
<td>', $context['member']['local_time'], '</td>';
echo '
-[Unknown]
That did it... of course :)
Thanks [Unknown] :)