XF 2.1 Hide Threads Messages and Avatar from homepage

Download THIS template modification posted by @Mr. Jinx (it works great!)

Once you have that installed, go to your ACP and navigate to Appearance--->Style properties-->Node/Forum List. Scroll to the bottom and uncheck "show number of threads" and "show number of messages".

THEN, post the following code into extra.less

Code:
.node-extra-icon     {
    display: none;
}

Hope this helps.
 
On the other hand, you could simply paste all the following into extra.less



Code:
/* HIDES ICON IN LAST POST COLUMN */
.node-extra-icon    {
    display: none;
}

/* HIDES NUMBER OF THREADS & MESSAGES ON INDEX PAGE */
.node-stats    {
    display: none;
}

/* ADJUSTS WIDTH OF "LAST POST" COLUMN - ADJUST TO YOUR LIKING */
.node-extra {
    width: 500px;
}
 
On the other hand, you could simply paste all the following into extra.less



Code:
/* HIDES ICON IN LAST POST COLUMN */
.node-extra-icon    {
    display: none;
}

/* HIDES NUMBER OF THREADS & MESSAGES ON INDEX PAGE */
.node-stats    {
    display: none;
}

/* ADJUSTS WIDTH OF "LAST POST" COLUMN - ADJUST TO YOUR LIKING */
.node-extra {
    width: 500px;
}

It worked, ty! :D
 
Top Bottom