How to hide a sub-sub-forum?

Richey

Member
Hey guys,

Let's say I have the following structure:

Category A
- Forum
- - Subforum 1
- - - Subofurm 2

When I go to Forum, by default I see Subforum 1 AND Subforum 2.
But I don't want that. I only want to see Subforum 2 when I goto Subforum 1.

So, how can I hide Subforum 2 when I visit Forum

Best regards,
Richey.
 
Moved to general support from template modifications.

This is something I raised a while ago, unfortunately it's how it works.

I think Mike posted some edits a while ago but I can't locate the post.

I've resorted to using categories to stop them from appearing.
 
When I test this on 1.0.4 and 1.1.0 the second subforum shows only inside of the Sub-Forums popup:

Screen shot 2011-10-10 at 1.27.58 PM.webp

This is the default behavior yet the OP seems to be describing a different behavior. Maybe it changed in the last 6 months. Do you want something different than this?
 
So he doesn't want this?

Screen shot 2011-10-10 at 1.40.10 PM.webp

You can completely hide the sub-forum menu by adding this to EXTRA.css:

Code:
.nodeList .subForumsPopup
{
	display: none;
}

Let me know if you want something different.
 
So he doesn't want this?

View attachment 19878

You can completely hide the sub-forum menu by adding this to EXTRA.css:

Code:
.nodeList .subForumsPopup
{
    display: none;
}

Let me know if you want something different.


I have tried adding this to our forum to hide the child nodes from the main forum page. However, it does not work, infact it does not do anything.

I want to make sure that sub-forums are never shown on the main page as it clutters the view. Any help please? @Jake Bunce @Brogan
 
Top Bottom