Remove <a> from <xen:avatar>

Dad.

Well-known member
Hello!

Here is my code:
Code:
<xen:avatar user="$visitor" size="s" class="NoOverlay plainImage" title="{$visitor.username}" />
It returns:
Code:
<a href="index.php?members/mike-creuzer.1/" class="avatar Av1s NoOverlay plainImage" title="Mike Creuzer" data-avatarhtml="true"><span class="img s" style="background-image: url('styles/planet-liebe/xenforo/avatars/avatar_male_s.png')"></span></a>
Is there any way to remove the anchor tag?

Thanks,
Mike
 
{xen:helper avatar, $visitor, l}
Where $visitor is an array that contains at least 4 types of data:
  • user_id
  • username
  • gravatar - link to gravatar, NULL if user hasn't any
  • avatar_date - the date when avatar was uploaded
l - the size. It may be s, m, l.
There are 2 more options but I don't remeber exactly what they do.
 
Top Bottom