• Resolved Erik Molenaar

    (@erikmolenaar)


    Hi zviryatko

    Thanks again for this great plug. You rock man!

    I used your code to add an additional size to the plugin:

    add_filter( 'menu_image_default_sizes', function($sizes){
      $sizes['menu-55x55'] = array(55,55);
      return $sizes;
    });

    When this new 55×55 size is selected it works great in Chrome, but IE (11) is just ignoring it and viewing the image original size -> http://tiny.cc/8v2kdy

    Perhaps the add_filter is incomplete? Or is it a bug? Can you tell how to fix this?

    Keep rockin’.
    Kind regards
    Erik Molenaar

    https://wordpress.org/plugins/menu-image/

Viewing 1 replies (of 1 total)
  • Hi,

    wordpress supports the image src-set feature, this feature shown multiple src property for each image with different size for different browser window size, seems the IE11 not supports src-set (http://caniuse.com/#feat=srcset) so you can disable this feature, go to FAQ page and use code from the end of the page.

Viewing 1 replies (of 1 total)
  • The topic ‘Added Image Size not Working in Internet Explorer’ is closed to new replies.