stefan
Member
I absolutely love the concept of Xenforos trophies, but since my board does not have a title ladder, the trophy points hardly have any relevance there.
On the other hand, I really missed icons for the trophies - so I made some template changes.
Before:

After:

How:
On the other hand, I really missed icons for the trophies - so I made some template changes.
Before:

After:

How:
- Find/create icons that fit your trophies
- Rename them: "trophy_1.png" for the trophy with ID=1, "trophy_2.png" for ID=2, etc.
- Upload them to your server
- Open trophy template
- Replace entire code with:
Code:
<xen:require css="trophy.css" />
<div class="trophy" id="trophy-{$trophy.trophy_id}">
<div class="points"><img title="{$trophy.title}" alt="{$trophy.title}" src="[PATH TO YOUR TROPHY ICON DIRECTORY]/trophy_{$trophy.trophy_id}.png"></div>
<xen:if is="{$trophy.award_date}">
<div class="awarded">{xen:phrase awarded}: <xen:datetime time="$trophy.award_date" /></div>
</xen:if>
<div class="info">
<h3 class="title">{$trophy.title}</h3>
<p class="description">{xen:phrase points}: {$trophy.trophy_points}</p>
<p class="description">{xen:raw $trophy.description}</p>
</div>
</div>