By Teleperformance Germany S.à.r.l. & Co. KG on Friday, 21 April 2017
Posted in General Issues
Replies 7
Likes 0
Views 212
Votes 0
Can we hide the clock in the points history? Some of our users are afraid that the clock there could show that they are using the portal very late in the night. So for privacy reasons it would be needed to hide the clock.
Sorry but I am not entirely sure which "clock" are you referring to. Do you mean the timestamp as highlighted here, http://take.ms/itfSA ?
·
Friday, 21 April 2017 22:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes that's what I mean
·
Friday, 21 April 2017 23:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You can edit the file /components/com_easysocial/themes/wireframe/points/history/item.php and replace line 25 below,

[gist]
<span class="es-timeline__date"><?php echo $this->html('string.date', $history->created);?></span>
[/gist]

with,

[gist]
<span class="es-timeline__date"><?php echo $this->html('string.date', $history->created, 'DATE_FORMAT_LC1');?></span>
[/gist]
·
Saturday, 22 April 2017 03:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, this would prevent me from updating the side as I need to check if you change something. Can you provide a CSS option, so that I can only hide that date on this page? It would be still in the HTML source, but no longer visible.
·
Saturday, 22 April 2017 03:12
·
0 Likes
·
0 Votes
·
0 Comments
·
No, it's not possible to hide this with css unless you hide the entire line. You could perform a template override by modifying the template file from the back end of EasySocial. It automatically creates an override for you.
·
Saturday, 22 April 2017 03:22
·
0 Likes
·
0 Votes
·
0 Comments
·
hm ok i see. Then let me check that internally first which way we can go here. Maybe for the future you could separate the date & time with two SPAN elements, then it would be possible to hide only the time element via CSS.
·
Saturday, 22 April 2017 05:54
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

Thanks for your input, we will consider to add this in the future.

Regarding the template override section, you can referring our documentation here : https://stackideas.com/docs/easysocial/administrators/templating/template-overrides

Hope this will help.
·
Saturday, 22 April 2017 12:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post