Fix for image sizing error
-
Today Easy Nivo slider started showing an error message (and messing up my home page) referring to line 31 in filosofo-custom-image-sizes.php. Here is the simple fix I found:
1. Comment out (or delete) line 31 which reads
$size_name = trim($size_name);
2. Go to line 38 and replace
empty( $meta['sizes'][$size_name] )
with
empty( $meta['sizes']['thumbnail'] )
- The topic ‘Fix for image sizing error’ is closed to new replies.