Hi mikelneid,
you can disable the shadow, using following CSS code
#wpcomm .avatar {
box-shadow: none;
}
Also: how can i disable the Icon from Pingbacks?
I don’t follow you. Could you please explain using some screenshot?
Thx,
see attached.
I mean this green thing: https://imgur.com/a/qNQBQ
I’m sorry but there is no option to change the image.
I can suggest to change it manually. In wpdiscuz\assets\img directory find the trackback.png image and replace with another image. Please note that the name must be the same (trackback.png).
Important notice: the changes will disappear after wpDiscuz update.
Also You can do this without removing the image. You just need to make some changes in “class.WpdiscuzWalker.php” file (wpdiscuz\templates\comment directory).
Find and comment out the following piece of code
$trackOrPingback = $comment->comment_type == 'pingback' || $comment->comment_type == 'trackback' ? true : false;
if ($trackOrPingback) {
$authorAvatar = '<img class="avatar avatar-' . $gravatarSize . ' photo"
width="' . $gravatarSize . '" height="' . $gravatarSize . '" src="' .
plugins_url(WPDISCUZ_DIR_NAME . '/assets/img/trackback.png') . '"
alt="trackback">';
}