Aug 19, 2022 7:10 am
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
Aug 19, 2022 8:56 am
Use this one:
#wpforo #wpforo-wrap #wpforo-footer .wpf-footer-box li:nth-child(4){ display: none; }
Aug 19, 2022 9:08 am
Thank you Robert