Hi, Anais.
Yes, it's possible. You'll need to edit this file:
ROOT/components/com_community/templates/default/people.browse.php
Look for this line: <div class="cIndex-Content"> (around line 190).
You'll find there this code:
<h3 class="cIndex-Name cResetH">
<a href="<?php echo $row->profileLink; ?>"><?php echo $row->user->getDisplayName(); ?></a>
</h3>
<?php
echo $row->user->getInfo('MY_FIELD_CODE');
?>
Hello,
I did what you told me and input this code but still not appearing :( Can you please help me?
Thanks
<?php
$fieldaboutme = $row->user->getInfo('FIELD_ABOUTME');
echo JText::_($fieldaboutme)
HI, Anais.
It's because you have override file in your current template html folder:
ROOT/templates/shape5_vertex/html/com_community
so you need to edit file there (I already did it).
Also I corrected my code above.
Hi, Anais.
Then just edit this file: ROOT/templates/shape5_vertex/html/com_community/people.browse.php and remove "xxxx" where you added it.
To remove number of friends look for this: COM_COMMUNITY_FRIENDS_COUNT_MANY and remove whole container:
<div>
<i class="com-icon-groups"></i>
<span><?php echo JText::sprintf( (CStringHelper::isPlural($row->friendsCount)) ? 'COM_COMMUNITY_FRIENDS_COUNT_MANY' : 'COM_COMMUNITY_FRIENDS_COUNT', $row->friendsCount);?></span>
</div>
Hi, Anais.
No, changes in that file doesn't influence any module positions it simply doesn't contain any.
Please open new thread for your issue so I'll take a look.