That's not easy, but you can replace in main.php the part which shows the banner with:
$itgr_res = db_query("SELECT itemgr.ID FROM itemgr WHERE abtID=$abt")
while ($itgr_row = db_fetch_row($itgr_res))
{
$item_res = ...
# insert item view part here
}
This grabs all itemgroups from databse which are in selected department and then selects all items of each itemgroup (can be a lot!).
Greetings
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is it possibal to drop the department banner and instead showing all the item in the selected item group ?
Merry Chrismas from Poland
That's not easy, but you can replace in main.php the part which shows the banner with:
$itgr_res = db_query("SELECT itemgr.ID FROM itemgr WHERE abtID=$abt")
while ($itgr_row = db_fetch_row($itgr_res))
{
$item_res = ...
# insert item view part here
}
This grabs all itemgroups from databse which are in selected department and then selects all items of each itemgroup (can be a lot!).
Greetings