I use your JA Vital template on Joomla 3.10 for a german website. I want to display the publish Date for my blog articles. With your template, there seem no way to set the date format for the publish date to the format we use in germany - it remains to use the english format.
Actual format:
Desired format:
After some investigation, I found a solution. Your template overrides the publish_date section in file \templates\ja_vital\html\layouts\joomla\content\info_block\publish_date.php. In this File you use a hard coded date format:
<?php echo Text::sprintf(HTMLHelper::_('date', $displayData['item']->publish_up, Text::_('F j,Y'))); ?>
The original section from joomla use a localizable date format:
<?php echo Text::sprintf(HTMLHelper::_('date', $displayData['item']->publish_up, JText::_('DATE_FORMAT_LC3'))); ?>
So after replacing the hard coded format with JText::_('DATE_FORMAT_LC3'), the date is displayed in my desired date format. Could you implement the fix in you template to provide it for all users?