Former Member
inherit
guest@proboards.com
184344
0
Nov 29, 2024 9:40:39 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 5, 2013 9:55:38 GMT -8
Is there a plug-in ( as V4 had) that puts all your sub boards BELOW the parent board instead above it? Example: When enter a forum that has multiple sub boards I'd like to see the main one, then scroll down to the sub boards. Hope I explained this right! Thanks.
|
|
#00AF33
14306
0
1
Sept 8, 2023 8:54:17 GMT -8
Jordan
What is truth?
11,838
October 2003
jab2
|
Post by Jordan on Nov 5, 2013 10:05:37 GMT -8
No code is needed since you can directly modify the HTML of the page now with Layout Templates.
Go to Admin > Structure > Layout Templates > Board > Board
This should be at the very top, and this is what displays the sub-boards.
{if $[board.sub_board_list]} <div class="container boards"> <div class="title-bar"><h2>Sub-Boards</h2></div> <div class="content cap-bottom"> $[board.sub_board_list] </div> </div> {/if} All you need to do is move that code below the next if-statement, so insert it between these two lines of code.
{/if}
{if $[thread_count] > 0}
|
|
Former Member
inherit
guest@proboards.com
184344
0
Nov 29, 2024 9:40:39 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 5, 2013 10:57:27 GMT -8
Excellent! Did the trick, and thanks so much!
|
|
#00AF33
14306
0
1
Sept 8, 2023 8:54:17 GMT -8
Jordan
What is truth?
11,838
October 2003
jab2
|
Post by Jordan on Nov 5, 2013 11:07:35 GMT -8
Glad to help.
|
|