I’m running 4.5.2 – I believe this broke with the release of 4.5
What’s interesting is the Tribe calendar broke at the same time. A user was able to provide a patch for the code. In case it is helpful to you, here it is:
In the File_imprter.php in wp-content/plugins/the-event-calendar/Tribe/Importer folder i’ve added one argument in $query_args
see below
protected function find_matching_post_id( $name, $post_type ) {
if ( empty( $name ) ) {
return 0;
}
$ids=array();
$query_args = array(
‘post_type’ =>; $post_type,
‘post_status’ =>; ‘publish’,
‘post_title’ =>; $name,
‘fields’ =>; ‘ids’,
/*here*/ ‘suppress_filters’ =>; false // this is my change
Again, I want to thank you for taking ownership of this. It would be nice to have the plugin working again. I have a work around using WordPress’ “Gallery” feature, but the plugin was better.
Cheers,
Paul