• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Upcoming Events Module - Show End Date

Upcoming Events Module - Show End Date 11 years 6 months ago #25102

Please advise how I can have displaying of the upcominng events module to show end date as well. Also, if it's one day event, it will show only start date.

Now: Event Name (DD/Month/yyyy)
I would like to have it list: Event Name (DD/Month/yyyy - DD/Month/yyyy)
The administrator has disabled public write access.

Upcoming Events Module - Show End Date 11 years 6 months ago #25137

Hello kullakant,

This can be achieved by using the template overrides procedure, which is described in the following article:

www.rsjoomla.com/support/documentation/v...s-look-and-feel.html

In this case you will simply need to replace the following block (starting at line 26 in your template override):
<small>(<?php echo $event->allday ? rseventsproHelper::date($event->start,rseventsproHelper::getConfig('global_date'),true) : rseventsproHelper::date($event->start, 'm/d/Y',true); ?>)</small> 
... with:
<small>(<?php echo $event->allday ? rseventsproHelper::date($event->start,rseventsproHelper::getConfig('global_date'),true) : rseventsproHelper::date($event->start, 'm/d/Y',true). " - ". rseventsproHelper::date($event->end, 'm/d/Y',true); ?>)</small>
Please remember that my responses aren't considered customer support, to receive customer support please submit a new customer support ticket, and we will gladly assist you.

Best Regards,
Cristian Nicolae.
The administrator has disabled public write access.
The following user(s) said Thank You: kullakant

Upcoming Events Module - Show End Date 11 years 6 months ago #25166

Solved! Thank you
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!