Arcane
Junior Member
Posts: 252
inherit
162340
0
Aug 17, 2015 19:59:54 GMT -8
Arcane
252
January 2011
ase
|
Post by Arcane on Jul 13, 2015 22:51:29 GMT -8
I'd like to replace the "Board" text (in the [ Board | Thread Count | Post Count | Last Post ] row) with the name the category is in.
I'd assume I would edit the blue portion of the following code: (lines 4-8 of Board List template)
<th class="icon"></th>
<th class="main">Board</th>
<th class="threads">Threads</th>
<th class="posts">Posts</th>
<th class="latest last">Last Post</th>
However, I'm not sure what I would put in its place. Help would be appreciated! Thank you in advance!
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Jul 29, 2015 3:13:25 GMT -8
Hey ArcaneUnfortunately the variable you're looking to replace it with ($[category.display_name]) doesn't actually load in the Board List template because it's called in the Home template. However, by moving the lines you mentioned it can be made to work. From the top of the Board List template, cut the following: <table class="list" role="grid"> <thead> <tr> <th class="icon"></th> <th class="main">Board</th> <th class="threads">Threads</th> <th class="posts">Posts</th> <th class="latest last">Last Post</th> </tr> </thead>At the top of the Home template you'll find a {foreach $[category]} - edit it to the following (changes in red and purple): {foreach $[category]} $[category.anchor] <div class="container boards"> <div class="title-bar bbcode"><h2><div class="title_wrapper">$[category.display_name]</div></h2></div> <div class="content cap-bottom"> <table class="list" role="grid"> <thead> <tr> <th class="icon"></th> <th class="main">$[category.display_name]</th> <th class="threads">Threads</th> <th class="posts">Posts</th> <th class="latest last">Last Post</th> </tr> </thead> $[category.board_list] </div> </div> {/foreach}You should get something that looks like this. Hope that helps, let me know if you have any problems. =]
|
|
Arcane
Junior Member
Posts: 252
inherit
162340
0
Aug 17, 2015 19:59:54 GMT -8
Arcane
252
January 2011
ase
|
Post by Arcane on Jul 31, 2015 13:11:16 GMT -8
Thank you, thank you! I appreciate it!
|
|