Hi,
I've been looking around but I cannot find why Menu Items, as Blogs, Bookmarks, Files, etc., are unselected when I click on the Friends or Mine tabs. They are associated by default to the all URL, so when I click on the All tab they are selected again.
I'm using Release - 1.8.5. Is this fixable?
Thank you very much.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Matt Beckett@Beck24

Matt Beckett - 0 likes
- tobi@telltarget

tobi - 0 likes
- tobi@telltarget

tobi - 0 likes
You must log in to post replies.Yes, by upgrading to 1.8.12
I have version 1.8.13 and the elgg-state-selected class won't come up for the custom menu items (elgg-admin ->Appearance->Menu Items).
Any ideas?
I guess it was lost by upgrading from 1.8.1 to 1.8.9.
Thanks in Advance
Tobi
I solved it now with jQuery:
$(document).ready(function() {
path= window.location.pathname;
if(path.indexOf( 'activity' )>-1){
$(".elgg-menu-item-custom4").addClass('elgg-state-selected');
}
if(path.indexOf( 'agpages/cat/about' )>-1){
$(".elgg-menu-item-custom5").addClass('elgg-state-selected');
}
...
})