Hi Joakim,
This is a bug with Custom Facebook Feed (don’t know about the Pro version of that plug-in). The plug-in is loading its a copy of jQuery UI from Google – Event Organiser uses the jQuery UI bundled with WordPress, as such there then two copies of jQuery UI loaded, and this causes problems.
The plug-in author seems to be trying to prevent this by checking if jQuery UI is already registered:
if( !wp_script_is('jquery-ui') ) {
wp_enqueue_script( 'jquery-ui' , 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js' );
}
However, WordPress doesn’t register a jquery-ui, it registers the components jquery-ui-core, jquery-ui-autocomplete, etc all separately.
I’ll post a link here on the plug-in’s forums and will resolve this thread. (For a quick fix, comment out the wp_enqueue_script line in the above, you’ll find it in custom-facebook-feed-admin.php.
Great! Thanks a lot!
I’ll be hoping for an update of their plugin in the future then.
Great plugin, btw!