[cXF] Grid Nodes

[cXF] Grid Nodes [Paid] 1.1.8

No permission to buy (€25.00)
I just renewed my license and upgraded to 1.1.6 and I'm a little bit confused. I checked the "Forum list, Forum view and Category view (for subforums)" option to Remove last post, but on forum view an avatar of last poster is there as well as that date linked to the last post.
What I'm missing?
 
I just checked and it works as it should. Check if all template modifications for this add-on are applied (green numbers). If not that means something is interfering with it.
 
For your forum, add this code to your extra.less template:
Less:
[data-template="forum_list"] .block.block--category.block--category18 .block-body {
    display: grid;
    grid-template-columns: 33% 33% auto;
}
This is only for your second category.

If you want for all nodes, then add just this:
Less:
[CODE=less][data-template="forum_list"] .block.block--category .block-body {
    display: grid;
    grid-template-columns: 33% 33% auto;
}
[/CODE]
 
Last edited:
Top Bottom