Viewing 6 replies - 1 through 6 (of 6 total)
  • Anonymous User 14023467

    (@anonymized-14023467)

    I am having the same issue. It won’t let me change the size of the image.

    Same here, if you try to change it from any other Image Size than “Menu-36×36” and press “Save” it always reverts to “Menu-36×36″…

    I managed to do a dirty fix in PHP to adjust the Image Size.
    Maybe it can be of help to others in the meantime…:

    add_filter( 'menu_image_default_sizes', function($sizes){
    
      // remove the default 36x36 size
      unset($sizes['menu-36x36']);
    
      // replace it with a different size
      $sizes['menu-36x36'] = array(55,55);
    
      // return $sizes (required)
      return $sizes;
    
    });

    Hi, it’s not a “dirty fix”, it’s a documented feature, see FAQ ??

    No offense zviryatko! ??

    I ‘abused’ this feature not to add another sizes, but to replace the 36×36 image size entirely by another size in the dropbox; as it seems a bug in the plugin you can’t change the size in the WP Dashboard. It keeps reverting to 36×36 ??

    Check out: https://screencast.com/t/9Q45nGYxOU

    Best regards

    Oh, in this case you right, saving problem it’s bug, but it still work for me and other users with latest wp version, did you got same problem on clean wp install? If not it may be caused by conflict with other plugins…

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Image Size’ is closed to new replies.