I’ve made it working.
in the File_imprter.php in wp-content/plugins/the-event-caledar/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
I’ve bumped into the same issue. I’ve chacked that it is related to upgrade to WordPress 4.5