[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.
 
Is it possible to configure the number of node columns directly from the addon and set, for example, 4? Or would it have to be done using CSS? Thank you

1714324287856.webp
 
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:
@BassMan
How can I adjust the width of the nodes using CSS, so that if there are 3 nodes they show at 33% width, but if there are 2 they show at 50% and if there is only one it shows at 100%?
My users have the option to hide nodes and the 33% that I use by default should not always be applied to them.
 
Top Bottom