Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.