Hi @Brainy S.,
I have bad news. I looked into the templates. But I can not hook into the code without extreme overhead.
For example I want to add the verification icon here:
But the code looks like that:
<ips:template parameters="$club, $members" />
<ol class='ipsAreaBackground_reset ipsList_reset ipsPad ipsGrid ipsGrid_collapsePhone ipsClear' data-ipsGrid data-ipsGrid-equalHeights='row' data-ipsGrid-minItemSize='170' data-ipsGrid-maxItemSize='400'>
{{if \count( $members )}}
{{foreach $members as $member}}
[...]
<h3 class='ipsType_sectionHead ipsMemberCard_name'>
{$member['core_members']['name']} <-- This is where the hook must go
</h3>
[...]
When I create a hook I can only access $club and $members, not the single member I need. So Invision should use a template to display the member name - then I could create a small hook to display the icon.
I know I could create a hook to override the complete loop - but I don't want to do that. It's such a big change and could break every core update.