XenForo How to remove the letter Z from avatars?

  • Thread starter Thread starter Dkf
  • Start date Start date
D

Dkf

Guest
If a user does not have an avatar, the forum generates an avatar with the letter Z.
How to avoid this?

I modified the template, but for some reason, it's not working. Please help.

PAGE_CONTAINER
Code:

Code:
<xf:js>
<script>
$(document).on('ready', function()
{
$('.avatar span[role=img][aria-label^="Z"]')
    .text('Y')
});
</script>
 </xf:js>
 </head>

Continue reading...