Hey Mark,
I want to alter the behavior of the link of the sidebar so that it goes straight to group instead of having the timeline. I have modified the FRoute on the a tag but on the file sidebar.groups.php:
<li class="widget-filter<?php echo $groupId == $group->id ? ' active' : '';?><?php echo $this->template->get('dashboard_groups_total') != 0 && $x > $this->template->get('dashboard_groups_total') ? ' hide' :'';?>"
data-dashboard-group-item
data-dashboardSidebar-menu
data-type="group"
data-id="<?php echo $group->id;?>">
<a href="<?php echo FRoute::groups( array( 'categoryid' => $group->getAlias() ) );?>"
title="<?php echo $this->html( 'string.escape' , $this->my->getName() ) . ' - ' . $this->html( 'string.escape' , $group->getName() ); ?>">
<i class="ies-users mr-5"></i> <?php echo $group->getName(); ?>
</a>
</li>
however it doesn't work. could you provide me a fix of the route ?