Question as to order of Groups on group page
Ning To Jamroom
Hi Strumelia
For 'Most Active' I assume that would be by number of comments, so -
order_by="group_comment_count numerical_desc"
Members are saved as a json array and there is currently no group_member_count option. I'll add it in for the next release. When it is there the option will be -
order_by="group_member_count numerical_desc"
For Most Recent Activity you need to query the Comment datastore -
{jrCore_list module="jrComment" search="comment_module = jrGroup" order_by="_created numerical_desc" . . . }
Note that if doing this, only the groups' title and their urls would be returned so you could display that and link to the actual group ok.
hth
Pa
updated by @paul: 12/29/14 09:23:54AM