Hi.
In both groups and events I need to show the "Create Announcement" link directly in the group/event menu. Right now it is hidden in the drop-down to the right of the cover. I want to be able to put the link shown in the screenshot into the the group toolbar (where the red arrow is pointing).
In /components/com_easysocial/themes/wireframe/helpers/cover/group.php I have found the following code:
<?php foreach ($apps as $app) { ?>
<li class="<?php echo $active == 'apps.' . $app->element ? 'is-active' : '';?>">
<a href="/<?php echo $group->getAppsPermalink($app->getAlias());?>" class="es-profile-header-nav__dropdown-link">
<?php echo $app->getAppTitle(); ?>
</a>
</li>
<?php } ?>
However, I do not need the for each. I only need to echo the "Create Announcement". Can you point me to the place in the file system where this link is generated? So that I can echo only that app and none of the other ones. Thanks!