Plugin Author
Dennis
(@dhoppe)
The problem is the double inclusion of jQuery in your website.
What do i need to delete?
humm that will effect my Feature slider.. might have to move to another plugin.
Let me delete them both i see what your saying now..
Im going to need to remove the conflicting js with your plugin as i need the jquery to be used for a few plugins i have removed the slider one and used the default on the theme. Just need to remove fancy gallery one.
How do I get your plugin to run in noConflict?
as I think this would solve the issue?
Solved your problem:
wp-content/plugins/coin-slider4-wp/coinslider-content.php
>>>DELETE LINE 42
Check my website: centrerussemons.net
Works like a charm!!!
You may also add this code to your functions.php :
<?php
function my_init_method() {
if (!is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
}
add_action('init', 'my_init_method');
?>
Hay Ivan,
Thanks for the reply!
I tried what you said still no joy!
When i take out
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.4.2.min.js"></script>
from the header.php which i use for my navigation and menu… it works.
So, when you take out this bit of code, your menu stops working?
You have to make sure jQuery is only inserted once before any other code.
I had the same problem, the same Firebug console error and I solved it by making sure no plugin inserted jQuery.
If it doesn’t help, you should probably write a cleaner menu code by yourself, here is my example: Demo
man I’m starting to pull out hairs.
Its conflicting with my menu and slider now. why cant I just no conflict these plugins or developers do it they must know that we use jquery in other plguins…. =/ Sad Times!
You insert jQuery 1.4.4 on line 17 and jQuery 1.4.2 on line 61.
You also use too many plugins for what it’s worth.
For example, you don’t need to use Cufon when you know how to use @font-face