Remove thread count on forum list

XenForo Remove thread count on forum list

AynaZ

Supervisor
  • Thread starter
  • Admin
  • #1
XenTeam submitted a new resource:

Remove thread count on forum list - xenforo tips Remove thread count on forum list

e7509e9393002.jpg

The code for your extra.less template could look like this:
CSS:
/* ##Removes thread counter from every forum in the forum view for everyone @ XNFORO.IR## */
.node-stats {
    dl.pairs.pairs--rows {
        &:first-child {
            display: none !important;
        }
    }
}
.node-meta {
    dl.pairs.pairs--inline {
        &:first-child {
            display: none !important;
        }
    }
}
/* ##Removes...

Read more about this resource...
 
Back
Top Bottom