SafeInSanity
Junior Member
Falling in love with Proboards again!
Posts: 424
inherit
23917
0
Feb 27, 2020 11:29:13 GMT -8
SafeInSanity
Falling in love with Proboards again!
424
May 2004
wiki
|
Post by SafeInSanity on Feb 27, 2019 17:19:23 GMT -8
Hi guys, ScottI am currently using the Sub-board Display Manager plugin to hide sub boards from displaying on my forum's homepage and it works and is a great plugin but the thing that I don't like about this plugin is that it just hides them and does not remove them and when my forum home page first loads for a second or two you can still see all of the subboards displaying underneath the main boards before the plugin takes affect and actually hides them. I know I am being picky but I would really just like to permanently remove the code that displays sub boards under main boards on my forum's home page so it will look normal on page loads. Can somebody please steer me in the right direction and let me know what code to remove without breaking anything else? Thanks.
|
|
#e61919
Support Staff
224482
0
Member is Online
1
Dec 4, 2024 16:12:25 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,571
August 2015
socalso
|
Post by Scott on Feb 28, 2019 4:52:54 GMT -8
SafeInSanity , simply put the reason you momentarily see the sub-boards is because the page has to load prior to the plugin taking affect. You can make a template modification to remove the sub-boards list on the main page by going to the Board List layout template. Look for this block of code: {if $[board.sub_board]} <p class="sub-boards"> Sub-board{if $[board.sub_board] != 1}s{/if}: {foreach $[board.sub_board]}<a href="$[board.sub_board.href]">$[board.sub_board.name]</a>$[board.sub_board.comma] {/foreach} </p> {/if} And replace it with this: <!-- {if $[board.sub_board]} <p class="sub-boards"> Sub-board{if $[board.sub_board] != 1}s{/if}: {foreach $[board.sub_board]}<a href="$[board.sub_board.href]">$[board.sub_board.name]</a>$[board.sub_board.comma] {/foreach} </p> {/if} -->
|
|
SafeInSanity
Junior Member
Falling in love with Proboards again!
Posts: 424
inherit
23917
0
Feb 27, 2020 11:29:13 GMT -8
SafeInSanity
Falling in love with Proboards again!
424
May 2004
wiki
|
Post by SafeInSanity on Mar 1, 2019 17:18:52 GMT -8
|
|