inherit
191814
0
Mar 16, 2014 14:50:31 GMT -8
Incompetent Egoist
Check out All Damned today!
309
March 2013
timeruinsalpha
|
Post by Incompetent Egoist on May 4, 2013 14:51:53 GMT -8
Once you go to Themes> Layout Templates> Board look around number 45. This is what you will see: {if $[thread_count] > 0} {if $[legend]} <div class="container legend"> <div class="title-bar"><h2>Legend</h2></div> <div class="content"> <table> <tr> {foreach $[legend]} <td>$[legend.icon] <span>$[legend.name]</span></td> {/foreach} </tr> </table> </div> </div> {/if} {/if}
Don't do anything yet.
Then you will go around number 61 and find this:
{if $[board.id]}{if $[show_stats]} <div class="container stats"> <div class="title-bar"><h2>Board Information & Statistics</h2></div> <div class="content"> <table> <tbody> {if $[board.description]} <tr> <td colspan="2"> <table> <tr> <td class="icon">$[image.description]</td> <td class="info last"> <div class="board-name">$[board.name]</div> <div class="board-description">$[board.description]</div> </td> </tr> </table> </td> </tr> {/if} Now, you will start from around 45 and highlight down to around 81: 81:
{/if}
Once all highlighted, you can either delete or cut from the template. View results and see if it works. I am using Google Chrome and it seems to work fine for me. Though, it only works on the boards and not the main page. I will update it as soon as I figure it out myself or someone else does. If there is something wrong with this and you can correct me, go ahead. I am still learning.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on May 4, 2013 20:17:04 GMT -8
I would highly recommend that, instead of deleting code from the layout template, to use <!-- and --> <!-- at the start of the part of code you wish to "remove" (aka disable), and --> at the end of.
This way it's very easy to replace/enable it if you so wish to.
|
|
inherit
191814
0
Mar 16, 2014 14:50:31 GMT -8
Incompetent Egoist
Check out All Damned today!
309
March 2013
timeruinsalpha
|
Post by Incompetent Egoist on May 6, 2013 16:12:58 GMT -8
I would highly recommend that, instead of deleting code from the layout template, to use <!-- and --> <!-- at the start of the part of code you wish to "remove" (aka disable), and --> at the end of. This way it's very easy to replace/enable it if you so wish to. Thank you.
|
|