Country Flags [Deleted]

Mouse hover ALT tag is not working.

How can i display the flag name, when someone hover the flag.



Actually i figured it out. I got rid of the {$value} at the end. That got rid of the text and i think its better to hover over it if the users doesnt know. Your code should look something like this

<img src="/styles/default/xenforo/clear.png" title="{$value}" class="flag flag-{$choice}" alt="{$value}"/>
 
11111111.png


Is it possible to duplicate this information to this the red arrow is pointing to? It would be nice to see where somebody is from without having to click on the information tab :). If anyone knows how to do this please feel free to leave this info here, thanks :D.





You have to edit this template: member_view


Add

Code:
    <xen:if is="{$customFieldsGrouped.personal}">
                                            <xen:foreach loop="$customFieldsGrouped.personal" value="$field">
                                                <xen:include template="custom_field_view" />
                                            </xen:foreach>
                                        </xen:if>




In fact I don't know why there's an information tab. Im actually debating weather to get rid of the information tab or the side information. They both are the same thing. Doesnt make sense to have both information there.
 
How would i get this to show up in the notable members page?

I know the code is:

<xen:if is="{$customFieldsGrouped.personal}">
<xen:foreach loop="$customFieldsGrouped.personal" value="$field">
<xen:include template="custom_field_view" />
</xen:foreach>
</xen:if>


But i don't know where to put it. I tried to put it in notable_members template but it doesn't show up anywhere.

Countrt1.webp


Thanks
 
Top Bottom