By HMED on Wednesday, 18 May 2016
Replies 9
Likes 0
Views 1.1K
Votes 0
Hello guys,

Want to share with you how we add some custom fields information as location in users popup,
You can do it in less then 5mn, all you need is custom fields names.

File to edit : /components/com_easysocial/themes/wireframe/profile/popbox.php
Before all backup this file

You'll need to replace this code :


<div class="profile-desp">
<?php if($this->template->get('profile_lastlogin', true )) { ?>
<?php if($user->getLastVisitDate() == '0000-00-00 00:00:00') { ?>
<?php echo JText::_('COM_EASYSOCIAL_USER_NEVER_LOGGED_IN');?>
<?php } else { ?>
<?php echo JText::_('COM_EASYSOCIAL_LAST_LOGGED_IN');?> <?php echo $user->getLastVisitDate('lapsed'); ?>
<?php } ?>
<?php } ?>
</div>


With :

	<div class="profile-desp">

<?php echo $fonction = $user->getFieldValue('JOB')?> - <?php echo $location = $user->getFieldValue('ADDRESS')?>
</div>


In this example we show members job title (custom field name:JOB, location field : ADRESS)

thats all.
Nice, thanks for sharing
·
Wednesday, 18 May 2016 23:08
·
0 Likes
·
0 Votes
·
0 Comments
·
You welcome, hope it will help some community managers here and hope to see it as ES native option
·
Thursday, 19 May 2016 00:13
·
0 Likes
·
0 Votes
·
0 Comments
·
Great
·
Thursday, 19 May 2016 13:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Jan

This is a great idea.

thanks

Paul
·
Monday, 13 June 2016 16:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks heading up on this Paul
·
Monday, 13 June 2016 19:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Great info..is there an easy way to determine different field names or do you just have to try to find it in the ES databases?
·
Tuesday, 14 June 2016 01:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Haki, just to to Easysocial backend \ Profiles types \ Custom fields \ YOUR FIELD (edit it) and see in the last tab to find the name
·
Tuesday, 14 June 2016 01:21
·
0 Likes
·
0 Votes
·
0 Comments
·
found it thanks! I will have to play around with it as I just swapped out your variables with some that I use and nothing happens..thanks for the idea though
·
Tuesday, 14 June 2016 01:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing Jan
·
Tuesday, 14 June 2016 10:14
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post