Is there a way to modify so the online user widget is displaying only woman for man and man for woman in the online user widget?
*/
$resultList = array(
'latest' => array(
'menu-label' => $language->text('base', 'user_list_menu_item_latest'),
'userIds' => $this->getIdList($userService->findList(0, $count)),
'toolbar' => ( $latestUsersCount > $count ? array($toolbar['latest']) : false ),
),
'online' => array(
'menu-label' => $language->text('base', 'user_list_menu_item_online'),
'menu_active' => true,
'userIds' => $this->getIdList($userService->findOnlineList(0, $count)),
'toolbar' => ( $userService->countOnline() > $count ? array($toolbar['online']) : false ),
));
*/