All you need is a check for get_option('show_avatars') in 2 places, the form for filling out a comment and the form for displaying a comment.
As of SB 2.7.1 in /includes/functions/comment_format.php you'll want to put this check about lines 69 (just before echo getavatar...) and 113 (just before the $avatar variables start getting defined). In the second instance, you'll either have to set $avatar to blank or do an else where you just echo the element. Or something else I didn't think of.
All you need is a check for get_option('show_avatars') in 2 places, the form for filling out a comment and the form for displaying a comment.
As of SB 2.7.1 in /includes/functions/comment_format.php you'll want to put this check about lines 69 (just before echo getavatar...) and 113 (just before the $avatar variables start getting defined). In the second instance, you'll either have to set $avatar to blank or do an else where you just echo the element. Or something else I didn't think of.