It appears to be a LIQL query since it is out of box. I am a neophyte on coding. Am I able to simply place your "Select" example in this code. <#assign qry = "SELECT id, title, view_href, description, topics.count(*), c_node_icon_url FROM boards WHERE parent_category.id = '${coreNode.id}' AND hidden=false ORDER BY position ASC" /> <#assign boards = executeLiQLQuery(qry) /> Should I replace the current topics.count(*) and change it to read: <#assign qry = "SELECT id, title, view_href, description, count(*) from messages where conversation.style='idea' and depth = 0, c_node_icon_url FROM boards WHERE parent_category.id = '${coreNode.id}' AND hidden=false ORDER BY position ASC" /> <#assign boards = executeLiQLQuery(qry) />
... View more