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
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.
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?