I’ve been having a problem with this for months. Killing many ajax functions on my site. Menus are impacted in a very bad way. I am pulling my hair out looking for a resolution.
http://headonradionetwork.com
Firebug shows three errors.
$ is not a function
[Break on this error] $(function() {
headonra…twork.com (line 1290)
$ is not a function
[Break on this error] $(document).ready(function(){
headonra…twork.com (line 1271)
jQuery(“div#members-list-options a”).livequery is not a function
[Break on this error] function() {
There are a number of threads discussing similar issues. jquery version clashes. None have been of any help aside from confirming I’m not alone.
Thaks Mate! I will be having a go at it shortly.
Simple just add to your functions.php in your main theme:
add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );
function my_deregister_javascript() {
wp_deregister_script( 'jquery' );
}
No more jquery!
Thanks @mydesignbytes. Just what I was looking for!