Jump to content

IPB 4.5 - Customizing the index page forums listing?


Recommended Posts

I have been looking everywhere but did not find some way to customize this:

On the index page of my website I have categories and within them the various forums are listed. However, some forums have multiple subforums. This leads to the pretty ugly effect that ALL of their subforums are also listed on the index page, creating some huge blocks here and there. Where can I customize that I only want to see the categories and forums but not also the subforums?

Link to comment
Share on other sites

In forums > front > index > forumRow Find and remove this:

			{{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}}

 

Link to comment
Share on other sites

On 10/29/2020 at 5:06 PM, Morrigan said:

In forums > front > index > forumRow Find and remove this:


			{{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}}

 

@Morrigan I've got the same issue.  I'm apparently not as advanced though.  Where do you find that?

Never mind.  Found it.

Edited by Dknelson
Link to comment
Share on other sites

In forums > front > index > forumGridItem Find and remove this:

 

					{{if $forum->hasChildren()}}
						<h4 class='ipsType_minorHeading ipsSpacer_top'>{lang="subforums"}</h4>
						<ul class="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>
									{{endif}}
									{$subforum->_title}
								</a>
							</li>
							{{endforeach}}
						</ul>
					{{endif}}

 

Link to comment
Share on other sites

  • 2 years later...

It has been about a decade since I've dabbled in this stuff - so please forgive my ignorance.

I'm currently using the most recent IPB, version 4.7. This solution in this thread is exactly what I need, but I haven't a clue how to find/edit "forums > front > index > forumRow".

Any help would be appreciated, thanks.

Link to comment
Share on other sites

On 11/12/2022 at 6:13 PM, PBarton said:

It has been about a decade since I've dabbled in this stuff - so please forgive my ignorance.

I'm currently using the most recent IPB, version 4.7. This solution in this thread is exactly what I need, but I haven't a clue how to find/edit "forums > front > index > forumRow".

Any help would be appreciated, thanks.

Alternatively, you could just add this to your Custom CSS page.

/* Hide subforums on grid view */
.cForumGrid .ipsType_minorHeading,
.cForumGrid .ipsType_minorHeading + .ipsList_inline{
	display: none;
}

 

Link to comment
Share on other sites

On 11/19/2022 at 5:46 PM, Insydius said:

Alternatively, you could just add this to your Custom CSS page.

/* Hide subforums on grid view */
.cForumGrid .ipsType_minorHeading,
.cForumGrid .ipsType_minorHeading + .ipsList_inline{
	display: none;
}

Excellent Insydius, thank you - I needed this too!

Link to comment
Share on other sites

  • 4 months later...
  • Recently Browsing   0 members

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