Remove:
PHP Code:
require_once('./includes/functions_user.php');
$pm_avaurl = fetch_avatar_url($newpm['fromuserid']);
if (empty($pm_avaurl))
{
$showpm_ava = false;
}
else
{
$showpm_ava = true;
}
Then in the template find:
And replace it with the image you want to show, also find:
Code:
<if condition="$showpm_ava">
<td class="alt1" width="100%">
<div class="smallfont"><img src="$pm_avaurl" alt="$newpm[username]'s avatar" border="0" /></div>
</td> </if>
Replace with:
Code:
<td class="alt1" width="100%">
<div class="smallfont"><img src="$pm_avaurl" alt="$newpm[username]'s avatar" border="0" /></div>
</td>