By Keith Colleluori on Friday, 31 July 2015
Posted in General Issues
Replies 4
Likes 0
Views 741
Votes 0
If i list 10 items on the frontpage i have a somewhat long page. if i then fill up the sidebar the modules are also filled on the shorter entry page. Is there a way to fix this so the sidebar or content section are kept even on both?
Likewise I havent tried this yet but what is the method to assign modules only to a specific entry? this might be the same point
·
Friday, 31 July 2015 02:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Keith,

Yes. One of the method is to assign the module only to specific entry like you mentioned in your previous reply earlier. The other method is to directly modify the module source file and add the following code to disable the module in entry view.
$view = JRequest::getVar('view');

if ($view == 'entry') {
return;
}


Other than that I am sorry but it is not possible to hide it via quick settings.
·
Friday, 31 July 2015 11:37
·
0 Likes
·
0 Votes
·
0 Comments
·
To do this I will have to set a menu item for an entry correct? I have done this with a hidden entry and did not get the module to show, am i missing something?
·
Thursday, 06 August 2015 14:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Keith,

With the hack that Ezrul provided above, you don't really need to create a menu item for the entry
·
Thursday, 06 August 2015 15:30
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post