By No Name on Saturday, 23 August 2014
Posted in General Issues
Replies 3
Likes 0
Views 492
Votes 0
Hello!
It is nice to have a statistic if you have lots of people on your website, but as example: see that an announcement (which is already sendet via email and almost or complete read), is just visited 20 times don`t make sense, it suggest a wrong impression -> not much up here.
Hello Manuel,

Hm, not really sure which particular stats are you referring to here. Can you please advise?
·
Sunday, 24 August 2014 00:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mark,

of course, here you are with the attachment it is easier to see..
·
Sunday, 24 August 2014 00:45
·
0 Likes
·
0 Votes
·
0 Comments
·
To hide the hits from the group view page, you can edit the file /components/com_easysocial/themes/wireframe/groups/item.header.php and remove the codes below,


<span>
<i class="ies-eye"></i>
<?php echo JText::sprintf( Foundry::string()->computeNoun( 'COM_EASYSOCIAL_GROUPS_VIEWS' , $group->hits ) , $group->hits ); ?>
</span>


To hide the discussion stats from the stream, edit the file /media/com_easysocial/apps/group/discussions/themes/default/streams/create.content.php and remove the codes below,


<div class="media-object pull-right">
<ul class="list-unstyled discussion-items">
<li class="stats-hits">
<span><?php echo $discussion->hits;?></span> <?php echo JText::_( 'APP_GROUP_DISCUSSIONS_HITS' ); ?>
</li>
<li class="stats-replies">
<span><?php echo $discussion->total_replies;?></span> <?php echo JText::_( 'APP_GROUP_DISCUSSIONS_REPLIES' ); ?>
</li>
</ul>
</div>

·
Sunday, 24 August 2014 11:38
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post