Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: More of the Crop Problem!


thelandman
Participant

@thelandman

@Annoyed, What theme are you using? Do you have a link I could take a look at. Often the problem is that a theme or plugin includes a different version of jquery to the that comes with WordPress. You could load jquery from google. Put this code at the top of your functions.php (in your theme folder)

`function my_init_method() {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js’);
}

add_action(‘init’, ‘my_init_method’);`

Skip to toolbar