• I’ve disabled photon, tiled images, and even carousel in Jet-pack, used regenerate thumbnails and also used the following code in my functions file:

    $photon_removed = remove_filter( 'image_downsize', array( Jetpack_Photon::instance(), 'filter_image_downsize' ) );
    
    // Call wp_get_attachment_image(), wp_get_attachment_image_src(), or anything else that ultimately calls image_downsize()
    
    if ( $photon_removed )
    	add_filter( 'image_downsize', array( Jetpack_Photon::instance(), 'filter_image_downsize' ), 10, 3 );

    I am using a slider/thumbnail plugin for woocommerce to display my product photos on the single product page and the Photon image plugin is screwing up my photos and making them look blurry. How can I remove this from my website completely. It still calls for the photon urls even after deactivating.

  • The topic ‘How to completely disable photon’ is closed to new replies.