The plugin resolved my issues on the admin side of WordPress but now my featured slider is not working. My thought is that there is a conflict. The site is http://www.themensroom.com.
The slider quickly shows the featured images then stops on the last one. If I disable the Use Google libraries plugin the slider begins to work but my admin functionality messes up again. Please advise/help!
http://wordpress.org/extend/plugins/use-google-libraries/
I have determined that it's conflicting with a plugin, http://wordpress.org/extend/plugins/wp-polls/.
I'm trying to determine a fix now.
I've resolved it, with the help from other posts in the forums. I added this to my functions file and it's working again.
function load_scripts () {
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui');
}
add_action('init', 'load_scripts');