Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted October 29, 20204 yr 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?
October 29, 20204 yr Do you use Grid or list view because there is a difference in which template you need to edit.
October 29, 20204 yr Author I use the regular list view, I like it flat and simple on the start page, not cluttered, which is also why I want to avoid the sub-forums all listed in big blocks, those subforums are seldomly used restricted working group areas, so people don't mind the additional click.
October 29, 20204 yr 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> {{endif}}{$subforum->_title}</a> </li> {{endforeach}} </ul> {{endif}}
November 1, 20204 yr 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> {{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 November 1, 20204 yr by Dknelson
November 2, 20204 yr I'd like to not show the subforums on the grid. How do I make those now show? Been looking everywhere with no luck. I'm rather surprised there is not an option to turn this off or on or make it so you can determine how you want them to be shown, if at all.
November 2, 20204 yr 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}}
November 13, 20222 yr 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.
November 14, 20222 yr Keep in mind that the info above your post is over 2 years old, so the code itself may not work. However... ACP -> Themes page, click the </> icon to the right of your Theme. On the next page, expand as below:
November 20, 20222 yr 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; }
November 23, 20222 yr 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!
March 26, 20231 yr We just updated to 4.7.8 today and my subforums are no longer hidden. Neither of the options posted in this thread seem to work now. Any suggestions on how NOT to display subforums on the front/main Index page in Grid mode?
March 26, 20231 yr @PBarton Yes, because of the recent UI Polish the CSS changed. You can use this in 4.7.8+ instead: /* Hide subforums on grid view */ .cForumGrid__subforums { display: none; }