inherit
91950
0
Sept 25, 2020 18:19:25 GMT -8
iSilverfyre
Penguins!
235
November 2006
crazywolf14
|
Post by iSilverfyre on Apr 14, 2013 17:39:45 GMT -8
support.proboards.com/thread/70216That is the code that I currently use on my forum and I would like to have it trasfeered over on to my forum when I update. I don't know where it needs to be requested at and I can move it if needed but I thought I would start here. Silver
|
|
#00AF33
Bark Different.
102833
0
1
Feb 12, 2023 16:57:46 GMT -8
RedBassett
I'm a Marxist/Lennonist of the Groucho/John variety.
15,405
April 2007
applecomputer
RedBassett's Mini-Profile
|
Post by RedBassett on Apr 14, 2013 18:19:45 GMT -8
Greetings,
This can be achieved very easily with template modifications.
Admin Panel > Structure > Layout Templates > Board > Board List:
Near the top, add the red:
<!--<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>-->
You will have to do this manually for every theme you want this removed on.
|
|
inherit
91950
0
Sept 25, 2020 18:19:25 GMT -8
iSilverfyre
Penguins!
235
November 2006
crazywolf14
|
Post by iSilverfyre on Apr 15, 2013 14:57:14 GMT -8
And how can I do it in a thread list. For example here. I figured out how to make each box on the home page list post and thread but were would I edit that in this case.
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Apr 16, 2013 11:58:12 GMT -8
Find this at Admin Panel > Structure > Layout Templates > Board: <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 add the red tags from RedBassett's post around the <thead> tags here as well.
|
|
inherit
91950
0
Sept 25, 2020 18:19:25 GMT -8
iSilverfyre
Penguins!
235
November 2006
crazywolf14
|
Post by iSilverfyre on Apr 16, 2013 15:52:20 GMT -8
Yes, that takes away the top cell. Where do I edit so the numbers say # replies | # views etc.
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Apr 16, 2013 16:30:54 GMT -8
Go to the same page, but go to the Thread List tab instead of the Board tab, change this:
<td class="replies clickable">$[thread.replies]</td> <td class="views">$[thread.views]</td>
to be this:
<td class="replies clickable">$[thread.replies] Replies</td> <td class="views">$[thread.views] Views</td>
|
|
inherit
91950
0
Sept 25, 2020 18:19:25 GMT -8
iSilverfyre
Penguins!
235
November 2006
crazywolf14
|
Post by iSilverfyre on Apr 17, 2013 12:51:21 GMT -8
Alright, thank you that solved everything.
|
|