Resource icon

Aggregating Forums [Paid] 2.9.0

No permission to buy ($30.00)
When you hide a forum from the nodes list, the threads appear in the aggregated forum but they doesn't appear under latest posts on the forum list.

In my opinion this is a bug. If you have a lot of threads created in subforums but no threads in the "main" forum in the forum list it seems there is no activity at all. Once you click on that forum, you see a lot of new threads. So there is no reason why threads appear in a forum but doesn't appear under latest posts.

Hope you can fix this @Xon! :)
"Display in the node list" was the required flag (this is actually stock XenForo behaviour).

Add to extra.less
.node.node--id6 .node-subNodesFlat {
display: none !important;
}

Just change the node ID (number) to the node you want it to hide from.
 
@Xon Possible to add threads from nodes which are under different branches in the hierarchy to the aggregating list?

For example:

A
--A1
--A2

B
--B1
--B2
--B3

C
--C1
--C2
--C3

Can I have threads in nodes B1,B2,B3, C1, C2, C3 showing in the node A?
 
Last edited:
Yes. I only want the threads in those nodes shows up in A, not the nodes themselves.

I actually tried the proxy link forums trick, if I uncheck the 'Display in the node list' option, the threads will also not be showing.
 
Last edited:
Yes. I only want the threads in those nodes shows up in A, not the nodes themselves.

I actually tried the proxy link forums trick, if I uncheck the 'Display in the node list' option, the threads will also not be showing.
Scroll right to the top of this page and you’ll see my post on how to hide it.
 
@JoyFreak the above code doesn't work.

CSS:
.node.node--id6 .node-subNodesFlat {
display: none !important;
}

Is there something different for link-forum?
 
@JoyFreak the above code doesn't work.

CSS:
.node.node--id6 .node-subNodesFlat {
display: none !important;
}

Is there something different for link-forum?
It does work but you need to:
"Just change the node ID (number) to the node you want it to hide from."
 
It does work but you need to:
"Just change the node ID (number) to the node you want it to hide from."

I did that. e.g. the link-forum is 267, the node it links to is 23

I use the following code:

CSS:
.node.node--id267 .node-subNodesFlat {
display: none !important;
}

Is there something like node--link to be added somewhere in the code?
 
Last edited:
I did that. e.g. the link-forum is 267, the node it links to is 23

I use the following code:

CSS:
.node.node--id267 .node-subNodesFlat {
display: none !important;
}

Is there something like node--link to be added somewhere in the code?
So I used the node id that the forum displays the sub forums on the forum list. i.e my Gaming Forum (on the forum_list) ID is 5. So using 5, will hide the sub-forums that's listed under that forum. No idea why it isn't working for you because mine is.
 
Wait.

A id:1
--A1 id:11
--A2 id:12
--B1 (link-forum) id:51
--B2 (link-forum) id:52
--B3 (link-forum) id:53
--C1 (link-forum) id:54
--C2 (link-forum) id:55
--C3 (link-forum) id:56

B id:2
--B1 id:21
--B2 id:22
--B3 id:23

C id:3
--C1 id:31
--C2 id:32
--C3 id:33

Threads in A1,A2, B1, B2, B3, C1, C2, C3 are shown in the node A by aggregating forums. But I want to hide the nodes 51, 52, 53, 54 55, 56 and make A looks like:

A id:1
--A1 id:11
--A2 id:12

I added the following codes:

CSS:
.node.node--id51 .node-subNodesFlat {
display: none !important;
}
.node.node--id52 .node-subNodesFlat {
display: none !important;
}
.node.node--id53 .node-subNodesFlat {
display: none !important;
}
.node.node--id54 .node-subNodesFlat {
display: none !important;
}
.node.node--id55 .node-subNodesFlat {
display: none !important;
}
.node.node--id56 .node-subNodesFlat {
display: none !important;
}

They still shows up.
 
Wait.

A id:1
--A1 id:11
--A2 id:12
--B1 (link-forum) id:51
--B2 (link-forum) id:52
--B3 (link-forum) id:53
--C1 (link-forum) id:54
--C2 (link-forum) id:55
--C3 (link-forum) id:56

B id:2
--B1 id:21
--B2 id:22
--B3 id:23

C id:3
--C1 id:31
--C2 id:32
--C3 id:33

Threads in A1,A2, B1, B2, B3, C1, C2, C3 are shown in the node A by aggregating forums. But I want to hide the nodes 51, 52, 53, 54 55, 56 and make A looks like:

A id:1
--A1 id:11
--A2 id:12

I added the following codes:

CSS:
.node.node--id51 .node-subNodesFlat {
display: none !important;
}
.node.node--id52 .node-subNodesFlat {
display: none !important;
}
.node.node--id53 .node-subNodesFlat {
display: none !important;
}
.node.node--id54 .node-subNodesFlat {
display: none !important;
}
.node.node--id55 .node-subNodesFlat {
display: none !important;
}
.node.node--id56 .node-subNodesFlat {
display: none !important;
}

They still shows up.
No you need to use:
A id:1 as the node ID. You want to hide the sub forums from displaying under A, right? This will remove all the sub forums listed underneath. I'm not quite sure how you can still keep A1 and A2.
 
No you need to use:
A id:1 as the node ID. You want to hide the sub forums from displaying under A, right? This will remove all the sub forums listed underneath. I'm not quite sure how you can still keep A1 and A2.

We're talking about some different things then...
 
That will hide the sub forums listed under the node. If you want to hide the whole node itself, use this:
.node.node--id5 {
display: none !important;
}

Any idea how to hide those linked nodes only (but still let the threads showing in A)?
 
That works. Thank you.

But now I will have the following included in the Post list

Post threads in...

--B1 (link-forum) id:51
--B2 (link-forum) id:52
--B3 (link-forum) id:53
--C1 (link-forum) id:54
--C2 (link-forum) id:55
--C3 (link-forum) id:56

How do I hide them?
 
Back
Top Bottom