• Resolved eric3d

    (@eric3d)


    After upgrading to WP 4.4, most images managed by MLP stopped displaying. After looking at the page source, I noticed some srcset images are not pointing to the correct folder:

    <img width="640" height="640" src="http://mysite.com/wp-content/uploads/myfolder/myimage.jpg" class="attachment-full size-full" alt="myimage" srcset="http://mysite.com/wp-content/uploads/2015/10/myimage-256x256.jpg 256w, http://mysite.com/wp-content/uploads/2015/10/myimage-512x512.jpg 512w, http://mysite.com/wp-content/uploads/2015/10/myimage.jpg 640w" sizes="(max-width: 640px) 100vw, 640px">

    https://wordpress.org/plugins/media-library-plus/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author AlanP57

    (@alanp57)

    Eric3D,

    Thank you. We will look into this issue.

    Thread Starter eric3d

    (@eric3d)

    Thanks. For others who ran into the same problem, you can disable WP’s responsive images feature with the following code. It’s not a fix but a workaround to keep your site working.
    add_filter( 'max_srcset_image_width', create_function( '', 'return 1;' ) );

    Plugin Author AlanP57

    (@alanp57)

    Eric3D,

    We have released a new version, 2.3, that address this issue. You can remove the filter and then updated the plugin.

    Thread Starter eric3d

    (@eric3d)

    Thanks for the quick update.

    Note: I had to deactivate and reactivate the plugin for the changes to take effect.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Broken in WP 4.4 (incompatible with srcset)?’ is closed to new replies.