XF2 [8WR] XenAtendo 2 (Calendar) PRO

XF2 [8WR] XenAtendo 2 (Calendar) PRO [Paid] 2.3.0.5

No permission to buy ($40.00)
@Jaxel one issue we have now. Not massive but an issue. When selecting a date in the calendar, so if I select 21st January to enter an event the date defaults to 14th January on the screen where you enter all the data.
 
@Jaxel one issue we have now. Not massive but an issue. When selecting a date in the calendar, so if I select 21st January to enter an event the date defaults to 14th January on the screen where you enter all the data.
Replace in EWR\Atendo\Pub\Controller\Event.php, lines 148-149 from:
Code:
        $params->str_date = $this->filter('date', 'str');
        $params->end_date = $params->str_date;
To:
Code:
        $params->str_date_time = $this->filter('date', 'str').' 12:00';
        $params->end_date_time = $this->filter('date', 'str').' 13:00';
 
Back
Top Bottom