• Resolved norristh

    (@norristh)


    I am using ai1ec to export events from WordPress sites into Jevents for Joomla!

    I would like to be able to specify the start date for events in the ICS export URL, so that I can import all events to Jevents, not just upcoming events. I added the following code to lib/command/export-events.php :

    line 56

    $params['start'] = Ai1ec_Request_Parser::get_param(
                                    'start',
                                    false
                            );

    line 114:

    if ( ! empty( $this->_params['start'] ) )
                            $start =  $this->_registry->get( 'date.time', $this->_params['start'] );
                    else

    Now I can use a URL like https://mysite.com/?plugin=all-in-one-event-calendar&controller=ai1ec_exporter_controller&action=export_events&no_html=true&start=2012-01-01

    Would it be possible to include something like this in future releases? It may be useful for other people, and it would prevent me from needing to make the changes again each time I update the plugin.

    I haven’t used Github, and couldn’t find the current repository…but if necessary, I could learn how to use it to submit my code changes. If you need that, please direct me to the current repository.

    Thanks for all your work on this great plugin!

    https://www.ads-software.com/plugins/all-in-one-event-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Feature request: set start date for ICS export’ is closed to new replies.