August 3, 201115 yr Hey guys, This is driving me nuts, I need mutiple slideshows - have them installed, only one was working as IDs so I changed them to classes, but the next slide isn't coming up now for some reason? http://paulbristow.co.uk/services Can anyone help me fix this? I'm presuming it's some kind of jquery conflict error, but my jquery knowledge is limited! Thanks!! Chris
August 3, 201115 yr Author I looked a nivo but it was paid already spent a couple hours getting it to this point so if I could fix it'd be ideal
August 3, 201115 yr You really need to sort out your jquery. Best way to load javascript in WP is like so: function rd_js_init() { if (!is_admin()) { wp_deregister_script('jquery'); wp_enqueue_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"), false, '1.6.1', true); // Add any more scripts to your function in the following format: wp_enqueue_script($handle, $path, $dependencies, $version, $in_footer); } } add_action('init', 'rd_js_init'); I looked a nivo but it was paid already spent a couple hours getting it to this point so if I could fix it'd be ideal NivoSlider for WP? Easy to set up, I've included it manually in various projects without paying for a plugin. Edited August 3, 201115 yr by Renaissance-Design
Create an account or sign in to comment