By Jeff on Tuesday, 06 October 2015
Posted in General Issues
Likes 0
Views 674
Votes 0
how do i add blogs to the drop down menu on the new es 1.4.x
Hello Jeff,

I'm sorry but it is not possible.
·
Tuesday, 06 October 2015 10:27
·
0 Likes
·
0 Votes
·
0 Comments
·
hrm ok i'll find how to do it myself thanks anyways
·
Tuesday, 06 October 2015 10:36
·
0 Likes
·
0 Votes
·
0 Comments
·
You either need to modify the menu with a template override or create your own custom menu.

Here's some sample code of a custom menu I made:

<div class="subnav">

<ul class="nav nav-pills menu">
<li class="item-184 deeper dropdown parent"><a href="#" class="dropdown-toggle" data-toggle="dropdown">


<?php $my = Foundry::user(); ?>
<img src="<?php echo $my->getAvatar(SOCIAL_AVATAR_SMALL); ?>" class="avatar"/> <span class="username"><?php $firstname = Foundry::user()->getName();
echo strtok($firstname, " "); ?></span></a>

<ul class="dropdown-menu"><li><a class="icon-user" href="<?php $my = Foundry::user(); echo $my->getPermalink(); ?>">My Profile</a></li><li class="item-186"><a class="icon-pencil" href="/my-trip-reports">My Trip Reports</a></li><li class="item-187"><a class="icon-picture" href="/my-photos">My Photos</a></li><li class="item-188"><a class="icon-comments" href="/notifications">Notifications</a></li><li class="item-176"><a class="icon-key" href="/privacy">Privacy Settings</a></li><li class="item-171"><a class="icon-folder" href="/manager">Content Manager</a></li><li class="item-784"><a class="icon-feed" href="/my-activity">My Activity</a></li><li class="item-185"><a class="icon-power-cord" href="/logout">Logout</a></li></ul></li></ul>

</div>


If you put this in a custom php module, it will display a nice looking menu with your avatar. The icons and links of course will need to be changed out to the ones you want them to be. Assuming you are using Joomla 3.4, you will not need any JavaScript due to bootstrap taking care of the HTML code and turning it into a drop down menu.
·
Tuesday, 06 October 2015 11:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Thanks for sharing , Josh.
·
Tuesday, 06 October 2015 12:26
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post