The Featured Posts Slider in not working on WordPress 3.4
-
The Featured Posts Slider (FThemes) in not working on WordPress 3.4
[ Moderator note: please use backticks or the code button when posting code snippets 10 lines or less. ]
1. Edit lib/menu-primary.php and find:if(!wp_script_is('jquery')) { wp_enqueue_script('jquery'); } if(!wp_script_is('hoverIntent')) { wp_enqueue_script('hoverIntent', THEMATER_URL . '/js/hoverIntent.js'); } if(!wp_script_is('superfish')) { wp_enqueue_script('superfish', THEMATER_URL . '/js/superfish.js'); }
And replace with:
function themater_menu_primary_scripts() { wp_enqueue_script( 'hoverIntent', THEMATER_URL . '/js/hoverIntent.js', array('jquery') ); wp_enqueue_script( 'superfish', THEMATER_URL . '/js/superfish.js', array('jquery') ); } add_action('wp_enqueue_scripts', 'themater_menu_primary_scripts');
2. Edit lib/menu-secondary.php and find:
if(!wp_script_is(‘jquery’)) {
wp_enqueue_script(‘jquery’);
}if(!wp_script_is(‘hoverIntent’)) {
wp_enqueue_script(‘hoverIntent’, THEMATER_URL . ‘/js/hoverIntent.js’);
}if(!wp_script_is(‘superfish’)) {
wp_enqueue_script(‘superfish’, THEMATER_URL . ‘/js/superfish.js’);
}And replace with:
function themater_menu_secondary_scripts() {
wp_enqueue_script( ‘hoverIntent’, THEMATER_URL . ‘/js/hoverIntent.js’, array(‘jquery’) );
wp_enqueue_script( ‘superfish’, THEMATER_URL . ‘/js/superfish.js’, array(‘jquery’) );
}
add_action(‘wp_enqueue_scripts’, ‘themater_menu_secondary_scripts’);
- The topic ‘The Featured Posts Slider in not working on WordPress 3.4’ is closed to new replies.