mfmediamarketing
Hi
Please make a new thread for different topic requests as this topic is for the Group and events part and already answered.
Here is file path /components/com_community/templates/jomsocial/layouts/pages/single.php
find code
<li>
<h5 class="joms-text--light"><?php echo JText::_('COM_COMMUNITY_PAGES_CREATE_TIME'); ?></h5>
<span><?php echo JHTML::_('date', $page->created, JText::_('DATE_FORMAT_LC')); ?></span>
</li>
replace it with
<li>
<span><?php echo JHTML::_('date', $page->created, JText::_('DATE_FORMAT_LC')); ?></span>
</li>
To avoid override of code on JomSocial upgrade you can create override of this file in the template folder as suggested in other threads.