[deleted] I ended up adding an id
to the ul
element as a workaround until I can add a new setting to control which items are enabled or disabled ๐
0.1.1
Added a temporary solution to be able to hide any of the list items inside of the Forum Statistics widget.
You can add the following CSS to your Custom Styles in the Admin CP to hide whichever list item you want inside of the widget:
// Change the value of nth-child(value) based on the list item you wish you hide
#ForumStatisticsList li:nth-child(4) {
display:none;
}
The above CSS will hide the "Latest Member" list item inside of the widget.
Updating
composer update fof/forum-statistics-widget