By Mel on Sunday, 07 September 2014
Posted in General Issues
Replies 3
Likes 0
Views 749
Votes 0
Hi,

I want to add a couple of new menu links to the existing menu bar that sits under the toolbar. These links are to other components on my website.

Where would i do this?

Please see attached image to show the menu I am talking about:



Kind regards

Mel
Hello Mel,

These are actually generated from the frosty theme. You can modify it in /components/com_easysocial/themes/frosty/default.php
·
Monday, 08 September 2014 01:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark,

many thanks for the fast response. I am only just getting round to doing this now. I want to move my Kunena forum link from my site's main menu to this one.
I have copied the last link on the toolbar menu and now going to change it to add the forum link.

<li class="<?php echo $view == 'activities' ? 'active' : '';?>">
<a href="<?php echo FRoute::activities();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_ACTIVITIES' );?>
</a>


Do I simply replace the entire block of code above like so:

<a href="http://www.mysite.com/forums"><?php echo JText::_( 'Forums' );?></a>


Kind regards

Mel
Mel
·
Monday, 15 September 2014 21:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mel,

Take a look at the existing codes in that file and you should see that each link looks like this,


<li class="<?php echo $view == 'profile' && !$userId ? 'active' : '';?>">
<a href="<?php echo FRoute::profile();?>">
<?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_PROFILE_VIEW_YOUR_PROFILE' );?>
</a>
</li>


You'll probably want to add another set of codes similar to above in the UL area.
·
Tuesday, 16 September 2014 00:29
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post