Post by Stinky666 on Aug 15, 2013 2:44:07 GMT -8
Okay, so perhaps I'm a failure... Which I probably am. But I added all of those <!-- and --> where you said, and nothing seems to have happened. I'm trying to remove the whole ROW that is above the board name.
So if my board name was City or something, above it says board, and then further down it has threads, then numbers under that, and posts, and numbers under that. I want to get rid of the threads, with numbers, posts with numbers and the whole row of board, threads and posts.
The above was for something else completely, it was to remove COLUMNS, not the row.
To remove that specific row, do the following (undo your LAST stuff though):
Admin > Themes > Layout Templates > Board > Board List
Lines 2 - 10, you should see:
<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>
Add the <!-- to the start and --> to the end so it becomes:
<!--<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>-->
If you also want to remove the row where it has the words: Subject, Created By, Replies, Views, Last Post, do the following:
From where you are, click on the tab "Board". Lines 27 - 37, you will see:
<thead>
<tr class="head">
<th class="icon"><span class="aria-hidden">Status</span> </th>
<th class="checkbox"> </th>
<th class="main">Subject</th>
<th class="created-by">Created By</th>
<th class="replies">Replies</th>
<th class="views">Views</th>
<th class="latest last">Last Post</th>
</tr>
</thead>
Do as you did before and add<!-- and --> so it becomes:
<!--<thead>
<tr class="head">
<th class="icon"><span class="aria-hidden">Status</span> </th>
<th class="checkbox"> </th>
<th class="main">Subject</th>
<th class="created-by">Created By</th>
<th class="replies">Replies</th>
<th class="views">Views</th>
<th class="latest last">Last Post</th>
</tr>
</thead>-->
And finally hit save.