5
lol.
Okay,
You reinstalled.
Goto module admin and set groups to show in that empty drop down menu. That should work.
I offer you support:
I would not suggest giving users these permissions. Use pre-defined categories similar to those used throughout your site and add different group access to create homepages for each. Example: Editors, reporters, camera men,..
OR INSTEAD make a category or subcategory the module start page.
FIRST: make a category with a subcategory in it.
FOR SUBCATEGORY STARTPAGE: add code at the top of modules/obs_classroom/index.php
header('location:subcategory.php?d=1');
Change 'd=1' to the id number of the subcategory wanted to display.
If you want, remove the Home :: Category links from the navigation menu.
FOR CATEGORY STARTPAGE: add code at the top of modules/obs_classroom/index.php
header('location:category.php?s=1');
Change 's=1' to the id number of the category wanted to display
-------
Now here is the info you want if you do not take my advice.
Look inside the templates folder and place navigation links you wish your users to see outside of the <{is_admin}> tags. Play with it until you get it.
Also, look at the edit block template there are 3 variables to play with to show and hide content, navigation, and instructions. It's very useful.
A system block to display only on the Homepages Module is very helpful for title heading, Hot Links, Featured Homepages, or additional instructions.
PEACE!