XF 2.2 General Discussion or Article forum type in forum_view

CTS

Active member
I use the following code in extra.less to remove the thread starter name and date from below a thread title in forum view....
Code:
[data-template="forum_view"]
{
    .structItem-parts
    {
        display: none;
    }
}

I have some nodes that are configured as Articles and not General Discussions.

And in those nodes, the text below the thread title is still visible.

I can convert it back and forth to show or not show in general discussion nodes, by changing the node type, but in articles nodes it does not change

Any reason or idea's on why the code doesnt work on article lists in forum view?
 
Figured it out. :)

Had to add the following to extra.less

Code:
[data-template="forum_view_type_article"]
{
    .structItem-parts
    {
        display: none;
    }
}
 
Top Bottom