When I activate the EE plugin, my homepage slider malfunctions. There are only 4 slides in my slider, but it is showing 3 empty slides before my 4 existing slides. When I deactivate the plugin, it functions correctly again.
I checked your site and it turns out the active WordPress theme is using a very old version of the jQuery library (version 1.6.4). Event Espresso requires the current version of jQuery that the current version of WordPress includes (the current version of jQuery that WordPress includes is version 1.10.2)
Can you check with the theme author to see if there is an update to this theme? If not, the theme may be able to be modified so that it will use the current version of jQuery or it may help to install the Restore jQuery plugin.
Can the theme developer offer assistance on how to modify the theme so it includes the correct jQuery library? If not, usually it’s something in the functions.php that will look like this:
function remove_wp_jquery() {
if (is_admin()) return;
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
The above can be changed to:
function remove_wp_jquery() {
if (is_admin()) return;
wp_enqueue_script( 'jquery' );
}
The support post ‘Activating EE makes home page slider malfunction.’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.