• Hello everyone,

    has anyone ever tried to import events with WP All Import? The basis is an XML file, which should then be synchronized automatically.

    Currently I start 3 different imports:
    – 1 x venues
    – 1 x organizer
    – 1 x events themselves

    My problem is not importing any of these records, this works perfectly, but when I import the events, the venues and the organizer are not assigned to the event.
    Has anyone ever had this “problem”?

    Thank you very much
    Many Greetings,
    Nico

Viewing 2 replies - 1 through 2 (of 2 total)
  • @nico87 did you also run into the issue of events not showing up on the frontend after the import, until you manually edited the event?

    Thread Starter Nico

    (@nico87)

    Hey Tim,

    i was able to fix this issue… meanwhile ??
    Add this code to your functions.php

    
    	function my_fix_date( $date, $time ) {
    		$date = $date . " " . $time;
    		return date( "Y-m-d H:i:s", strtotime( $date ) );
    	}
    
    

    However, I was only able to add the organizer data via additional ACF fields and not via the events calendar’s own functions

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Import Venues, Organizers and Events with WP All Import’ is closed to new replies.