XF 2.3 /whats-new/ versus /whats-new/posts/

Robert9

Well-known member
/whats-new/ has a sidebar.
/whats-new/posts/ has no sidebar.

I want to short thread_list_macros for /whats-new/ to get rid of the last two cells.

What is the easiest way to do it?
 
Last edited:
Code:
[data-template="whats_new"]
{
    .structItem-cell--iconEnd, .structItem-cell--latest
    {
        display:none;
    }
}

solves it; but i prefer not to have code at all.

Which way is the best to get rid of the both cells in whats_new?
 
Back
Top Bottom