Author Row Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Author Row

    Kami-sama
    Kami-sama
    Forumember


    Female Posts : 407
    Reputation : 12
    Language : EN, RU, DE, LT
    Location : Lithuania

    In progress Author Row

    Post by Kami-sama January 18th 2015, 12:19 pm

    Hello!

    Do not judge by the tittle! I've read topics about this issue, but it was nowhere openly solved Sad
    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 Smile
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Author Row

    Post by Ange Tuteur January 18th 2015, 1:48 pm

    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
    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.
    Kami-sama
    Kami-sama
    Forumember


    Female Posts : 407
    Reputation : 12
    Language : EN, RU, DE, LT
    Location : Lithuania

    In progress Re: Author Row

    Post by Kami-sama January 18th 2015, 1:54 pm

    Hm. Maybe then it's possible to create my own separator?
    You know what I mean?
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Author Row

    Post by Ange Tuteur January 18th 2015, 2:19 pm

    Yeah, I know in the other templates they use the following tags :
    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. scratch
    Kami-sama
    Kami-sama
    Forumember


    Female Posts : 407
    Reputation : 12
    Language : EN, RU, DE, LT
    Location : Lithuania

    In progress Re: Author Row

    Post by Kami-sama January 18th 2015, 2:34 pm

    Hm. Yes! -.-
    If it only had an ID or smth -.-
    I'll have to think more about it.