XF 2.2 Remove conditions in last threads widget

Lucianin

Member
Hello. I have read several threads but none have the solution.
I have an offers forum, and I want to leave a simple widget with the name of the thread only, without showing the avatar, creator, date, time, total replies or node. This is to keep the focus on the topic title and save space.
I know that I need to modify the extra.less template, but I don't know how to do it.
I would appreciate some help.
Thank you!

Captura de pantalla 2022-09-23 103931.png
 
Last edited:
Solution
Try this
Less:
[data-widget-key="your_widget_id"] {
    .contentRow-figure,
    .contentRow-minor {
        display: none;
    }
    .contentRow-main.contentRow-main--close {
        padding-left: 0;
    }
}
Top Bottom