• Resolved nxnwebdev

    (@nxnwebdev)


    I’m using ORM API for create meetup recurrence event.

    $args = array( 
     'title' => 'Rec Event Title', 
     'status' => 'publish', 
     'start_date' => '2023-02-10 00:00:00',
     'end_date' => '2023-02-10 23:59:59',  
     'timezone' => 'America/New_York', 
     'recurrence' => 'RRULE:FREQ=WEEKLY;INTERVAL=1',
     'series' => 'test series' 
    );
    
    $recurring_event = tribe_events()->set_args($args)->create()->ID;

    Event create, but event create a singular, without series, and without recurrence. Event Calendar pro Version 6.0.3

    PS

    in the wp_tec_events table – the “rset” cell is empty, but when filling in recurring event from the admin panel, everything works correctly. Series included.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘ORM API (recurring event and series are not created)’ is closed to new replies.