Unfortunately, the username and password you have entered do not match!

Registration

Unfortunately, this username is already taken!

Unfortunately, this e-mail address is already used!

Please retype the verification code.

All fields are required

How do I display the events only in their starting day inside the calendar view?

How do I display the events only in their starting day inside the calendar view?

In order to display the events only in their start date while in the RSEvents! Calendar, some source code modifications will be required. Namely, you will have to edit the file \components\com_rsevents\helpers\calendar.php. Here, around line 313, you will find the following code lines:

for ($i=$start; $i<=$end; $i+=86400)
$this->_event_dates[date('d.m.Y', $i)][$event->IdEvent] = $event->IdEvent;
// Event end date
$this->_event_dates[date('d.m.Y', $event->EventEndDate)][$event->IdEvent] = $event->IdEvent;

which can be either deleted, or commented out, like this:

//for ($i=$start; $i<=$end; $i+=86400)
//$this->_event_dates[date('d.m.Y', $i)][$event->IdEvent] = $event->IdEvent;
// Event end date
//$this->_event_dates[date('d.m.Y', $event->EventEndDate)][$event->IdEvent] = $event->IdEvent;

Feedback