can you help me to locate the file which has the code for filtering the 'All/Unanswered' posts on load (for 'All' and 'unanswered' filters)?
$my = JFactory::getUser(); // get user info
$gid = $my->groups; // get array containing all user groups
//8 is the group_id of superuser, 11 is for lawyer, 17 is for moderator
$lawyer ='11'; $superuser = '8'; $moderator= '17';
if (in_array($lawyer, $gid)){$activeFilter='unanswered'; $filter='unanswered';}
if (in_array($moderator, $gid)){$activeFilter='unanswered';$filter='unanswered';}
if (in_array($superuser, $gid)){$activeFilter='unanswered';$filter='unanswered';}