Author Row
2 posters
Page 1 of 1
Author Row
Hello!
Do not judge by the tittle! I've read topics about this issue, but it was nowhere openly solved
The issue: remove author row/column from the topics list box.
My problem: I manage to remove authors, the name of the column in the top, BUT there is a separator for announcements and stickies (I choose for them to be separated by a table from other topics.) And here is the problem. Maybe there is a Javacode to change the separator?
The only topic where it was solved:
https://help.forumotion.com/t111996-how-do-i-remove-the-author-column?highlight=author+row
If @ankillien is still alive, maybe could help me too
Do not judge by the tittle! I've read topics about this issue, but it was nowhere openly solved
The issue: remove author row/column from the topics list box.
My problem: I manage to remove authors, the name of the column in the top, BUT there is a separator for announcements and stickies (I choose for them to be separated by a table from other topics.) And here is the problem. Maybe there is a Javacode to change the separator?
- Code:
separator - {topics_list_box.row.END_TABLE_STICKY}
The only topic where it was solved:
https://help.forumotion.com/t111996-how-do-i-remove-the-author-column?highlight=author+row
If @ankillien is still alive, maybe could help me too
Re: Author Row
Hi @Kami-sama,
As far as I know, there's no way to edit that variable and attempts to wrap it are wonky. You could use some JavaScript to clean up the author heading that floats around mocking us.
Modules > JS code management > create a new script
Title : your choice
Placement : In the sub-forums
Just replace the Author texts if it's different for your default board language.
As far as I know, there's no way to edit that variable and attempts to wrap it are wonky. You could use some JavaScript to clean up the author heading that floats around mocking us.
Modules > JS code management > create a new script
Title : your choice
Placement : In the sub-forums
- Code:
$(function(){
$('th').filter(function(){ return $(this).text().trim() == 'Author' }).hide();
});
Just replace the Author texts if it's different for your default board language.
Re: Author Row
Yeah, I know in the other templates they use the following tags :
Although from what I tried, it doesn't work. Removing the variable removes the row entirely, kinda annoying how it's in a variable for phpbb2.
- Code:
<!-- BEGIN sticky_table -->
<!-- markup here -->
<!-- END sticky_table -->
Although from what I tried, it doesn't work. Removing the variable removes the row entirely, kinda annoying how it's in a variable for phpbb2.
Similar topics
» Request: Author Tag
» Publication author problem
» Avatar with Author of Quote
» Mentioning Author While Quoting
» Please help me with the author's background color
» Publication author problem
» Avatar with Author of Quote
» Mentioning Author While Quoting
» Please help me with the author's background color
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum