Jump to content

Any way to disable showing subforums for particular forums on the forum index?


Vikestart

Recommended Posts

Posted

I have an archive forum that is set to be read-only. Sometimes I'll be moving entire forum sections into it (Q&A forums mostly).

Is there any way to disable the displaying of subforums on the forum index? That list will eventually get pretty long and I don't want that.. :rofl:

Posted

I've taken care of this with custom CSS for now, but it's not at all an elegant solution.

.ipsApp_front .cForumRow .ipsDataItem_subList { display:none; }

 

Posted

I've taken care of this with custom CSS for now, but it's not at all an elegant solution.

.ipsApp_front .cForumRow .ipsDataItem_subList { display:none; }

 

​.

You can do it with adjusting the template ..

forums > front > index > forumRow

find this & delete the total block ..

Another way is to add a forumID to the IF statement that it only skip on that forum with subforums ..

 

{{if $forum->hasChildren()}}
	<ul class="ipsDataItem_subList ipsList_inline">
		{{foreach $forum->children() as $subforum}}
			<li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}">
				<a href="{$subforum->url()}">{{if \IPS\forums\Topic::containerUnread( $subforum )}}<span class='ipsItemStatus ipsItemStatus_tiny {{if !\IPS\forums\Topic::containerUnread( $subforum ) && !$subforum->redirect_on}}ipsItemStatus_read{{endif}}'><i class="fa fa-circle"></i></span>&nbsp;{{endif}}{$subforum->_title}</a>
			</li>
		{{endforeach}}
	</ul>
{{endif}}

 

 

Maybe another idea is to make a sub-sub forum .. name the first sub forum Archive .. and I guess it will only display that .. not the sub-sub forums under Archive Edit: This works .. Category name > Forum name > Sub Forum name "Archive" > Sub sub forum Q&A1 .. Q&A2 .. etc ..

Only Archive will be displayed ..

 

.

Posted

Nope, not touching any of the template files. The entirety of my forum has been redesigned with only custom.css and I'd like to keep it that way, but thanks for the answer!

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...