I updated the plugin today and suddenly all the avatar's which were showing fine until then, are now "file not found".
I basically have different sized avatar's but due to theme requirement I had modified the image call like below:
<?php echo get_avatar(get_the_author_meta('ID'),84);?>
which was working fine.
But after today's update, I get a 404 on the image.
My images are named with the person name like abc-def.jpg, but the file that is being called (after update) becomes abc-dfg-84x84.jpg which gives a 404 because I don't have a file named like that.
How to rectify this?
Thanks.