By Justin on Sunday, 06 July 2014
Replies 6
Likes 0
Views 1.2K
Votes 0
Just wondering if there's a quick method to remove the Applications menu link and side module from the front-end, or is a matter of tweaking the code? If it's code, could you point me in the right direction...it would be greatly appreciated.

I've attached a screen-shot to help explain (don't mind the div colors - they're there to help highlight what still needs work)
Hello,

Unfortunately there's no easy way to turn this off. You can customize the theme files by removing them manually. The theme files responsible are at the following locations:

/components/com_easysocial/themes/wireframe/toolbar/default.profile.php
/components/com_easysocial/themes/wireframe/dashboard/default.php
·
Sunday, 06 July 2014 03:24
·
0 Likes
·
0 Votes
·
0 Comments
·
I am interested in seeing the official answer to this as well.
As for my experience, I have not found an easy way of doing this as of yet.
My honest opinion is that we need everything that shows up on the side bar to be removed from the side bar, and built as modules. This would allow us to turn everything on and off as we please, and place it all anywhere we want.
It would also be nice to get options in the EasySocial toolbar module to turn each entry on or off.
·
Sunday, 06 July 2014 02:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mark!
·
Sunday, 06 July 2014 03:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Well with that said Justin, to do what you want to do:
/dashboard/default.php
comment out line 33
<?php echo $this->includeTemplate( 'site/dashboard/sidebar.apps' ); ?>


/toolbar/default.profile.php
comment out lines 89-93

<li>
<a href="<?php echo FRoute::apps();?>">
<i class="ies-cube ies-small mr-5"></i> <?php echo JText::_( 'COM_EASYSOCIAL_TOOLBAR_APPS' );?>
</a>
</li>


This is in theory. I have not tested it. But I see no reason this would not do what you want.

My advice would be to create a new theme and put your modified files in the new theme.
·
Sunday, 06 July 2014 03:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Jthm0138,

I added a css class to the APPS elements in both php files and used "display: none;" in my template's custom stylesheet, and also added both files to my template's HTML folder. That way I simply remove the css if I decide to enable Apps down the line.
·
Sunday, 06 July 2014 03:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing guys
·
Sunday, 06 July 2014 13:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post