- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Germany
- Has been a member for 3-4 years
- Interviewed on the Envato Notes blog
- Item was Featured
This is crazy, the whole Google API is down: http://ajax.googleapis.com
Imagine how many WP themes are now broken because of this? Already received several support questions concerning this.
Anyhow, anybody knows why this might be happening?
Moral: enqueue and pull your jQuery form WP or a local file, not Google 
crozer said
This is crazy, the whole Google API is down: http://ajax.googleapis.comImagine how many WP themes are now broken because of this? Already received several support question concerning this.
Anyhow, anybody knows why this might be happening?
Moral: enqueue and pull your jQuery form WP or a local file, not Google![]()
working fine, try https 
- Sold between 250 000 and 1 000 000 dollars
- Item was Featured
- Author had a Free File of the Month
- Author was Featured
- Exclusive Author
- Interviewed on the Envato Notes blog
- United States
- Microlancer Beta Tester
Seems to be working fine for me
http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Germany
- Has been a member for 3-4 years
- Interviewed on the Envato Notes blog
- Item was Featured
OrganicBeeMedia said
crozer saidworking fine, try https
This is crazy, the whole Google API is down: http://ajax.googleapis.comImagine how many WP themes are now broken because of this? Already received several support question concerning this.
Anyhow, anybody knows why this might be happening?
Moral: enqueue and pull your jQuery form WP or a local file, not Google![]()
![]()
Strange, this doesn’t work:
wp_deregister_script('jquery'); //deregister current jquery
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, '1.5', false); //load jquery from google api, and place in footer
wp_enqueue_script('jquery');
OK so this works: (strange i’m seeing this issue now)
wp_deregister_script('jquery'); //deregister current jquery
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js', false, '1.5.1', false); //load jquery from google api, and place in footer
wp_enqueue_script('jquery');
crozer said
OrganicBeeMedia said
crozer saidworking fine, try https
This is crazy, the whole Google API is down: http://ajax.googleapis.comImagine how many WP themes are now broken because of this? Already received several support question concerning this.
Anyhow, anybody knows why this might be happening?
Moral: enqueue and pull your jQuery form WP or a local file, not Google![]()
![]()
Strange, this doesn’t work:
wp_deregister_script('jquery'); //deregister current jquery wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, '1.5', false); //load jquery from google api, and place in footer wp_enqueue_script('jquery');
the url is wrong, add this to your functions.php
function crozer_load_scripts() {
//prevents loading scripts in admin
if ( is_admin() )
return;
//Loads Script only if not admin
if (!is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js', false, '1.5.1', true);
wp_enqueue_script( 'jquery' );
}
}
add_action('wp_print_scripts', 'crozer_load_scripts');
