You can try to fix the problem on your site with the solution below
Open templates/ja_charity/acm/countdown/tmpl/style-1.php file
+ find and change
$date= new DateTime($helper->get('downdate'));
to
$config = JFactory::getConfig();
$timezone = new DateTimeZone($config->get('offset'));
$date= new DateTime($helper->get('downdate'), $timezone);
$offset = $timezone->getOffset($date)/3600;
+ and find
<script type="text/javascript">
(function($){
jQuery(document).ready(function($) {
$('.countdown').downCount({
date: '<?php echo $date->format('Y/m/d'); ?> <?php echo $helper->get('downdate-time'); ?>',
offset: + 7
}, function () {
alert('We Ready To Rock Your World');
});
});
})(jQuery);
</script>
change to
<script type="text/javascript">
(function($){
jQuery(document).ready(function($) {
$('.countdown').downCount({
date: '<?php echo $date->format('Y/m/d'); ?> <?php echo $helper->get('downdate-time'); ?>',
offset: + <?php echo $offset; ?>
}, function () {
alert('We Ready To Rock Your World');
});
});
})(jQuery);
</script>