Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114 Activating EE makes home page slider malfunction. | Event Espresso - Staging Server
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.