hello,
how do i disable the avatar that appears on the user info area for all members. WHERE IT SAYS(you have unread post, you have spent 32 hours online)
default or custom theme ?
when default,do this
index.template.php
if (!empty($context['user']['avatar']))
echo '
<td class="windowbg" valign="middle">', $context['user']['avatar']['image'], '</td>';
/*
if (!empty($context['user']['avatar']))
echo '
<td class="windowbg" valign="middle">', $context['user']['avatar']['image'], '</td>';
*/
when not,you should better attach your index.template.php
i m using dilber mc theme...
bump*
any help?
index.template.php
<td valign="middle" width="1" style="padding-right:10px; padding-left:10px;">', !empty($context['user']['avatar']) ? $context['user']['avatar']['image'] : '', '</td>
<td valign="middle" width="1" style="padding-right:10px; padding-left:10px;"></td>
thanks, worked..