hi,
the whole site is in the desired format (day, month and year), less in the presentation of the module members, which is in the following order (year, month and day).
could someone help me change it?
grateful see image
<span><?php echo date('Y-m-d h:i',strtotime($member->registerDate)); ?></span>
<span><?php echo date('d-m-Y h:i',strtotime($member->registerDate)); ?></span>
<span><?php echo (strtotime($member->lastvisitDate) == 0) ? JText::_('NEVER') : date('Y-m-d h:i',strtotime($member->lastvisitDate)); ?></span>
<span><?php echo (strtotime($member->lastvisitDate) == 0) ? JText::_('NEVER') : date('d-m-Y h:i',strtotime($member->lastvisitDate)); ?></span>