aprendiz_novato In the Next Match module, the day of the week and the month appear in English. Please see in the picture yellow marks. Could you please tell me where I can change it?
As I mentioned in above reply, that info is also rendered via file: root/templates/ja_sport/acm/live-matches/tmpl/style-2.php
<?php echo date('l', $timestamp).' '.date('d', $timestamp).' '.date('M', $timestamp).' '.date('Y', $timestamp).', '.date('H:i', $timestamp).', ';?>
<?php echo $helper->get('lm-info'); ?>
You can tell me the format that you want so I can suggest the changes needed.
aprendiz_novato You would also need to know how to change the base time of the website. There is a 12 hour difference in the Next Match clock.
It will be based on the timezone you set in global configuration in backend of your site:
aprendiz_novato On the other hand, I have to change in the "All Matches" module the day of the week and the month, which appear in English. Could you please tell me where I can change it?
It's from another module style: root/templates/ja_sport/acm/live-matches/tmpl/style-1.php you can find the same code for date time in this file.