Hi
To change name to username, open this file ../gk_party_freak/html/mod_gk_js_members/default.php and find this line:
- Code: Select all
<span><?php echo $member->name; ?></span>
change to
- Code: Select all
<span><?php echo $member->username; ?></span>
About the "_self" members links, aren't they already opening in self?
Anyway, if you want to insure it, find this line:
- Code: Select all
<a href="index.php?option=com_community&view=profile&userid=<?php echo $member->id; ?>" class="gk_js_avatar">
and change to
- Code: Select all
<a href="index.php?option=com_community&view=profile&userid=<?php echo $member->id; ?>" target="_self" class="gk_js_avatar">
Cheers