ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,745
- Points
- 823
Reputation:
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:
Continue reading...
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...