JamesBrown Well-known member Aug 5, 2023 #1 I need a sidebar widget that just lists x no of thread titles. Just the titles and no other information, no thread starter or forum ect. Is this possible? Thanks
I need a sidebar widget that just lists x no of thread titles. Just the titles and no other information, no thread starter or forum ect. Is this possible? Thanks
Mr Lucky Well-known member Aug 5, 2023 #2 Try this in extra.less (use browser inspector to find actual widget numerical ID) Code: [data-widget-id="x"] .contentRow-minor {display:none} Last edited: Aug 5, 2023 Upvote 0 Downvote
Try this in extra.less (use browser inspector to find actual widget numerical ID) Code: [data-widget-id="x"] .contentRow-minor {display:none}
Mr Lucky Well-known member Aug 5, 2023 #3 Or use the widget key, e.g.: Code: [data-widget-id=data-widget-key="forum_new_threads"] .contentRow-minor {display:none} Upvote 0 Downvote
Or use the widget key, e.g.: Code: [data-widget-id=data-widget-key="forum_new_threads"] .contentRow-minor {display:none}
JamesBrown Well-known member Aug 5, 2023 #4 Thanks. I tried both to no avail, nothing changed Upvote 0 Downvote
JamesBrown Well-known member Aug 5, 2023 #5 Correction I used the widget key in both, the first option with the ID rather than the key worked. Thank You. Could I add anything to that to strip out any thread prefixes? Upvote 0 Downvote
Correction I used the widget key in both, the first option with the ID rather than the key worked. Thank You. Could I add anything to that to strip out any thread prefixes?
Mr Lucky Well-known member Aug 5, 2023 #6 JamesBrown said: Correction I used the widget key in both, the first option with the ID rather than the key worked. Thank You. Could I add anything to that to strip out any thread prefixes? Click to expand... Try this: Code: [data-widget-id="x"] .label {display:none} Upvote 0 Downvote
JamesBrown said: Correction I used the widget key in both, the first option with the ID rather than the key worked. Thank You. Could I add anything to that to strip out any thread prefixes? Click to expand... Try this: Code: [data-widget-id="x"] .label {display:none}