Fixings
-
The following notices are thrown just after install the plugin:
Notice: Undefined index: width in D:\wamp\www\illusion\wp-content\plugins\yith-woocommerce-compare\class.yith-woocompare-helper.php on line 28
Notice: Undefined index: height in D:\wamp\www\illusion\wp-content\plugins\yith-woocommerce-compare\class.yith-woocompare-helper.php on line 28
Fixings:
— class.yith-woocompare-helper.php line 28Replace the following code:
add_image_size( ‘yith-woocompare-image’, $size[‘width’], $size[‘height’], $size[‘crop’] );with the following code:
if(isset($size[‘width’]) && $size[‘height’])
add_image_size( ‘yith-woocompare-image’, $size[‘width’], $size[‘height’], $size[‘crop’] );I will give more bug fixing that will help the great plugin.
Regards
Rakibul Hasan
- The topic ‘Fixings’ is closed to new replies.