Jetpack 404 not found: devicepx.js

While setting up this site I noticed some files not found errors in dev console.
One was devicepx.js which was in the jetpack modules path.

404 error
404 error

It’s used to optionally load retina/HiDPI versions of files. I believe it would be for gravatars and since this site doesn’t use gravatars I deemed it unnecessary.

//remove unecessary queing of js file by jetpack
add_action('wp_enqueue_scripts', create_function(null, "wp_dequeue_script('devicepx');"), 20);

The above code will remove the file from the enqueue list.

Leave a Reply

Your email address will not be published. Required fields are marked *