By sofian on Wednesday, 01 October 2014
Posted in General Issues
Likes 0
Views 0.9K
Votes 0
hi
i want to hide etems from the main menu , how can i do it ?
Hello sofian,

Sorry for late reply to this,
Unfortunately that was no option to disable this, but you can hack in this file and hide it -> JoomlaFolder\components\com_easysocial\themes\frosty\toolbar\default.php

//LINE 179
<li class="<?php echo $view == 'apps' ? 'active' : '';?>">
//Replace with
<li style="display: none" class="<?php echo $view == 'apps' ? 'active' : '';?>">


//LINE 184
<li class="<?php echo $view == 'activities' ? 'active' : '';?>">
//Replace with
<li style="display: none" class="<?php echo $view == 'activities' ? 'active' : '';?>">

Hope this help.
·
Thursday, 02 October 2014 00:04
·
0 Likes
·
0 Votes
·
0 Comments
·
thank you very much Arlex Wong .
good help
but i afraid when update the script this will remove if i dont sea and forget .

for now i just shorten the words , all what i was want that the menu become on one line and not 2 like in the attachment .

very very very thanks
·
Thursday, 02 October 2014 04:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Sofian,

Sorry for late reply to this,
You can do the template override and copy the customization file in JoomlaFolder\templates\protostar\html\com_easysocial\toolbar\default.php
So it will prevent your future update. Hope this help.
·
Thursday, 02 October 2014 11:26
·
0 Likes
·
0 Votes
·
0 Comments
·
yesssssssss
this is what called a very perfect help .

thankssssssss
·
Thursday, 02 October 2014 14:25
·
0 Likes
·
0 Votes
·
0 Comments
·
hello sofian,

You're welcome, glad to heard your issues resolved.
·
Thursday, 02 October 2014 16:36
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post