Notifications
Clear all

Style [Solved] Remove Online Element from Footer Stats

3 Posts
2 Users
1 Reactions
570 Views
Posts: 125
Topic starter
(@cmw14)
Estimable Member
Joined: 8 years ago

Tried this old code which used to remove online count element from the footer statistics. It used to work for V1, but does not for V2. Can anyone advise what the code needs to be now?

/* remove online from footer stats */
.wpf-stat-item:nth-child(4)
{display: none !important;}

2 Replies
Robert
Posts: 10549
Admin
(@robert)
Support Team
Joined: 8 years ago

@cmw14,

Use this one:

#wpforo #wpforo-wrap #wpforo-footer .wpf-footer-box li:nth-child(4){
	display: none;
}
Posts: 125
Topic starter
(@cmw14)
Estimable Member
Joined: 8 years ago

Thank you Robert