Ok lads so this
Gives me the name of my friends list but how would you
1. link the Name back to friends profile and
2. show friends avatar also within the a href
is this possible?
$my = JFactory::getUser(); // load current logged in user
$model = FD::model('friends');
$listOfFriends = $model->getFriends($my->id);
foreach ($listOfFriends as $friend) {
echo $friend->name; // display the friend list with their name only
}
Gives me the name of my friends list but how would you
1. link the Name back to friends profile and
2. show friends avatar also within the a href
is this possible?