By Damien Tochtermann on Friday, 26 May 2017
Posted in General
Replies 11
Likes 0
Views 673
Votes 0
Hello...

I'd like to add some custom fields ( Professionnal experience, Job, ...) to the Profile view of All members page. How can I do that ? Thanks !
Hello Damien,

Have you already installed EasySocial on your site? If you haven't done that, could you add your site details on https://stackideas.com/dashboard/site and I will setup an example for you?
·
Friday, 26 May 2017 01:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Done !
·
Friday, 26 May 2017 01:38
·
0 Likes
·
0 Votes
·
0 Comments
·
I just made a mistake on registred domain linked to license : it is (temporarely) http://vitiv2.2c-prestations.com
I forgot the 2 .... Thanks
·
Friday, 26 May 2017 01:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Damien, can I also have the FTP access please?
·
Friday, 26 May 2017 01:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Updated on first post.
·
Friday, 26 May 2017 01:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Can you also please change licensed domain ? Thanks... i'd like to have component on French
·
Friday, 26 May 2017 01:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

I'd like to add some custom fields ( Professionnal experience, Job, ...) to the Profile view of All members page. How can I do that ? Thanks !

You can add those customs fields by going to Backend>Components>EasySocial>Profile Type>Registered as shown http://take.ms/j40J8. Then, on 'customs field' you can add/remove those fields on it. For example, i have added a new steps, named 'others' and new field that prompt user to choose their professional experience as you can see here http://take.ms/22Hes.

You can add those field by clicking on the field or drag and drop these fields http://take.ms/hLMZh into the content provided. Please give it a try and see how it goes

Can you also please change licensed domain ? Thanks... i'd like to have component on French

Can you explain more on what you wanted to achieved here? As from what i checked, you havent registered any domain on your license as you can see here https://monosnap.com/file/qOndwzBJQJU2cVeByGGMc6t4tWMnX0

Please advice.
·
Friday, 26 May 2017 10:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello...i'd like to add custom fields values on People page...not only on Profile page (http://vitiv2.2c-prestations.com/community/utilisateurs) and make the people preview like in Jomsocial (small boxes with all the fields) either than just lines.

Thanks for help.
·
Friday, 26 May 2017 13:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Sorry for the confusion above.

In order for you to achieved that, it will required to do some modifications on this file .../components/com_easysocial/themes/wireframe/users/default/items.php and once you have done you modifications, i would advice you to copy that files and paste in here /templates/*current template folder/html/com_easysocial/users/default/items.php as those changes will be overwritten on your next update/upgrade, as you can refer here https://stackideas.com/docs/easysocial/administrators/templating/template-overrides

By the way, i have created those on your folder and so you can continue customizing it there. and in order for you to fetch those customs field, you can go to Backend>Components>EasySocial>Profile Type>Registered and check those 'Unique key' fields as you can see here http://take.ms/JUThy and paste it accordingly on code below.


//For example you wanted to show users universities
//need to paste those unique key here
<?php if ($user->getFieldValue('TEXTBOX-1')) { ?>
<li data-breadcrumb="ยท">
<?php echo $user->getFieldValue('TEXTBOX-1')->toDisplay('listing', true); ?>
<?php } else { ?>
<?php echo JText::_('COM_EASYSOCIAL_NO_FOLLOWERS_YET'); ?>
<?php } ?>
</li>


Please give it a try and see how it goes
·
Friday, 26 May 2017 16:39
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post