By vtt5962 on Friday, 19 June 2015
Posted in General Issues
Replies 4
Likes 0
Views 337
Votes 0
Hello, how more do not reveal the number of views in an event or a group ?

bonjour, comment ne plus faire apparaître le nombre de vues dans un événement ou un groupe ?

merci pascal.
Hi, the upcoming Easysocial 1.4 will give you the option to hide the number of hits, but as of today, I believe it is not possible without override.
·
Friday, 19 June 2015 02:42
·
0 Likes
·
0 Votes
·
0 Comments
·
OK thank you, for the next version you have a date ?

ok merci, pour la prochaine version vous avez une date ?
·
Friday, 19 June 2015 02:48
·
0 Likes
·
0 Votes
·
0 Comments
·
No I don't know when it will be ready, but you can see the progress on the roadmap here: http://stackideas.com/roadmap/easysocial
·
Friday, 19 June 2015 02:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi vtt5962,
< groups >
for temporary , you can go to joomlafolder\components\com_easysocial\themes\wireframe\groups\item.header.php
	<span>
<i class="ies-eye"></i>

<?php echo JText::sprintf( FD::string()->computeNoun( 'COM_EASYSOCIAL_GROUPS_VIEWS' , $group->hits ) , $group->hits ); ?>
</span>
at line 172-176
< events >
go to joomlafolder\components\com_easysocial\themes\wireframe\events\item.header.php
     <span>
<i class="ies-graph"></i>

<?php echo JText::sprintf(FD::string()->computeNoun('COM_EASYSOCIAL_EVENTS_TOTAL_VIEWS', $event->hits), $event->hits); ?>
</span>
at line 176 - 180

Thanks Akigi for the heads up
·
Friday, 19 June 2015 03:18
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post