i post direct links on my facebook fanpage to the jomsocial groups that i have created on my site. the problem is.. when people who are not registered click on the links that i post, they'll be taken to the group description.. and most of them wouldn't notice the tab to the recent activities.
is there away so people who are not register see the recent activities of groups instead of description ?
<ul class="cResetList">
<li id="cTab-0" class="">
<li id="cTab-1" class="cTabCurrent">
<li id="cTab-2">
<li id="cTab-3">
</ul>
as you see cTab-1 is activated which is the description tab
when a member of the site clicks the group link it'd be this way
<ul class="cResetList">
<li id="cTab-0" class="cTabCurrent">
<li id="cTab-1">
<li id="cTab-2">
<li id="cTab-3">
</ul>
i believe this is the code that needs to be edited
<ul class="cResetList">
<li <?php if($isMember || $isSuperAdmin) {echo 'class="cTabCurrent"';} else if($isPrivate){echo 'class="cTabDisabled"';} ?>><a href="javascript:void(0)"><?php echo JText::_('COM_COMMUNITY_FRONTPAGE_RECENT_ACTIVITIES');?><?php if($alertNewStream){ echo '<span></span>'; } ?></a></li>
<li <?php if(!$isMember &&!$isSuperAdmin ) {echo 'class="cTabCurrent"';} ?>><a href="javascript:void(0)"><?php echo JText::_('COM_COMMUNITY_GROUPS_DESCRIPTION');?></a></li>
<?php if($config->get('createannouncement')) { ?>
<li <?php if((!$isMember && !$isSuperAdmin) || ($isPrivate && !$isMember)) {echo 'class="cTabDisabled"';} ?>><a href="javascript:void(0)"><?php echo JText::_('COM_COMMUNITY_GROUPS_BULLETIN');?><?php if($alertNewBulletin){ echo '<span></span>'; } ?></a></li>
<?php } ?>
<li <?php
if(!$isMember && !$isSuperAdmin && $isPrivate)
{echo 'class="cTabDisabled"'; } ?>>
<a href="javascript:void(0)"><?php echo JText::_('COM_COMMUNITY_GROUPS_DISCUSSION');?><?php if($alertNewDiscussion){ echo '<span></span>'; } ?></a></li>
</ul>