[OzzModz] Gamer Profiles

xF2 Add-on [OzzModz] Gamer Profiles 3.0.0 Patch Level 1

No permission to download
Q: Why does the user's gamer card show this image and no stats.

A: In most cases the cause is the user has not set a Custom URL within their Steam Profile. This should match their Steam name.

Q: How can I have additional profiles?
A: To add additional profiles, just edit the following code and place it where you want it in the ah_gamerprofiles_macros template, and make sure you create the appropriate custom user field
Rich (BB code):
<xf:comment>Twitch</xf:comment>
<xf:if is="{$user.Profile.custom_fields.ah_twitch}">
    <a href="https://www.twitch.tv/{$user.Profile.custom_fields.ah_twitch}" class="ah-gp-icon" data-xf-init="tooltip" title="{$user.Profile.custom_fields.ah_twitch}" target="_blank">
        <xf:fa icon="fab fa-twitch" />
    </a>
</xf:if>
Top