This filter can be used for adding some classed in the avatar.
Changelog
Since 7.0.0 version
Parameters
$class (type: string) – the class that will be added in the wrapper div of the avatar
Usage
add_filter("wpdiscuz_avatar_classes", function ($class) { $class .= " my-custom-avatar-class"; return $class; });