XF 1.3 Trophy User Title Banners?

Benas223

Member
Is there a feature to add banners for trophy user titles just like user groups? Tried looking on the forums, only found Trophy icons, but not the trophy user titles themselves. Any advice? Any add-ons related to this?

Thanks in advance!

Not sure if this is about trophy user title banners, but maybe someone will know what is this about and maybe help me out a bit?

The only way I know is to use usergroups and conditional statements.

Yeah, figured it out.

Code:
            <xen:if is="{$user.message_count} > 500">
                    <dl class="pairsInline">
                        <dt>Roshan</dt>
                        <img src="styles/default/xenforo/ranks/rank_thedaddy.png" />
                        </dl>
            <xen:elseif is="{$user.message_count} > 400" />
                    <dl class="pairsInline">
                        <dt>Thunderhide</dt>
                        <img src="styles/default/xenforo/ranks/rank_spammer.png" />
                    </dl>
<xen:else />
                    <dl class="pairsInline">
                        <dt>Kobold</dt>
                        <img src="styles/default/xenforo/ranks/rank_0.png" />
                    </dl>
                </xen:if>

Etc etc.
 
  • Like
Reactions: psx
It would depend on what you mean by add banners, adding a different banner for every user trophy title is a lot more difficult than adding a 'trophy banner' when a users trophy title is displayed.
 
Thank you for your prompt response @Waindigo

adding a 'trophy banner' when a users trophy title is displayed.

this is what we are looking for..

this is how our user profile looks at the moment.
upload_2014-4-17_12-45-44.webp

how would we add a banner for the trophy user title to display under "APSA Member" (which is the user group title)?
 
Yes, that's exactly what I need. And that the banner would change after a user gain higher trophy user title, so it's not all previous trophy titles displayed, only the current one.
 
Top Bottom