By Mark Klinkhammer on Thursday, 26 January 2017
Posted in General
Likes 0
Views 152
Votes 0
I am creating a business-to-business. networking site with EasySocial... and I want to change the verbage in the Menu area. Like change "People" to "Members". Plus, I want to get rid of the FRIENDS Link.

I saw in one of your demos that had added a custom link in that area. Please let me know how to accomplish this. (SEE PIC ATTACHED)

Thanks for the help.

Mark
Hi Mark,

Kindly find my response for your inquiries below:

To change the 'People' you can simply do language override with the string below:
1. Click Extensions>Languages>Override>New: https://www.screencast.com/t/4DAWvitDctez
2. Key in the language constant and text : https://www.screencast.com/t/0ojXlmYb
Language costant:
COM_EASYSOCIAL_TOOLBAR_PEOPLE

To remove 'Friend' link you can customize the file:
JoomlaFolder/components/com_easysocial/themes/wireframe/toolbar/default.php
and remove the code below:

<li class="<?php echo $view == 'friends' && $layout != 'invite' ? 'is-active' : '';?>">
<a href="<?php echo ESR::friends();?>" class="es-navbar__footer-link">
<i class="fa fa-users"></i>
<span>
<?php echo JText::_('COM_EASYSOCIAL_TOOLBAR_FRIENDS'); ?>
</span>
</a>
</li>

You can do template override for this so it will not get override as you undergo update
refer this documentation: https://stackideas.com/docs/easysocial/administrators/templating/template-overrides

For adding a new link, you can customize in the same file stated above as well
·
Thursday, 26 January 2017 11:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you... very detailed and thorough answer!
·
Friday, 27 January 2017 01:02
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Mark Glad to hear your issue has resolved.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.

Have a nice day ahead
·
Friday, 27 January 2017 10:30
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post