Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1
  • 2

TOPIC: Issues with event times

Issues with event times 10 years 1 month ago #538

  • Super User
  • Super User's Avatar
  • OFFLINE
  • Administrator
  • Posts: 3519
  • Thank you received: 278
  • Karma: 65
Chewbacca wrote:
Hello, thank you for your help.
The URL is www.kungsbackack.se
Scroll down to see the module.

Regards,
//Peter
Hello Peter
Thank you.
Can you send me joomla administrator via contact form? We will check it and help you
Best regards
Bach Pham
The administrator has disabled public write access.

Issues with event times 10 years 1 month ago #539

  • Peter
  • Peter's Avatar
  • OFFLINE
  • New Member
  • Posts: 5
  • Karma: 0
Ok, I have sent it.

Regards,
//Peter
The administrator has disabled public write access.

Issues with event times 10 years 1 month ago #540

  • Super User
  • Super User's Avatar
  • OFFLINE
  • Administrator
  • Posts: 3519
  • Thank you received: 278
  • Karma: 65
Hi Peter
We have changed it please check it
Best regards
Bach Pham
The administrator has disabled public write access.

Issues with event times 10 years 1 month ago #541

  • Super User
  • Super User's Avatar
  • OFFLINE
  • Administrator
  • Posts: 3519
  • Thank you received: 278
  • Karma: 65
Hi
You can see the code we have changed in file module/mod_jo_facebookevents/tmpl/default.php
Go to line 107->109
Changed
<div class="jo-fbevent-time">
<?php echo date($params->get('dateformat'), strtotime($fbevent["start_time"]))?><?php if($fbevent["end_time"] !=""){?><?php echo JText::_("MOD_JO_FACEBOOKEVENTS_UNTIL") ?><?php echo date($params->get('dateformat'), strtotime($fbevent["end_time"]))?><?php }?>
</div>
To
<div class="jo-fbevent-time">
<?php
$start_time = substr($fbevent["start_time"], 0, -5);
$end_time = substr($fbevent["end_time"], 0, -5);
?>
<?php echo date($params->get('dateformat'), strtotime($start_time))?><?php if($fbevent["end_time"] !=""){?> <?php echo JText::_("MOD_JO_FACEBOOKEVENTS_UNTIL") ?> <?php echo date($params->get('dateformat'), strtotime($end_time))?><?php }?>
</div>
Best regards
Bach Pham
The administrator has disabled public write access.
  • Page:
  • 1
  • 2
Time to create page: 0.135 seconds