Can I remove all the little icons from WPdiscuz comments?
(Like the square speech bubble with numbers in it beside "Leave A Reply", and the small round speech bubbles beside "Reply)
Is it possible to remove them simply with some CSS?
Hi @wpdz-user,
Please navigate to Dashboard > Comments > Settings > Styling admin page, put the following CSS code in "Custom CSS code" textarea. Save it delete all caches, do CTRL+F5 on the frontend.
i.fas, i.fa, i.far, i.fab {
display: none !important;
}
Thanks.
I tried this, following the steps above.
Unfotunately,
the icons still appear (the square speech bubble beside "Leave A Reply", and the small round speech bubbles beside "Reply).
Hi @wpdz-user,
Please add this code in "Custom CSS code" too, it'll hide the comment count part.
h3#wc-comment-header .wpdiscuz-comment-count {
display: none;
}
the small round speech bubbles beside "Reply"
Please leave some example URL to allow us to check it.
Hallo @astghik
Thank you. Hiding the comment count worked.
However, it leaves a space/indent to the left of the "Leave a Reply". See the red box in the attached image.
I guess that is padding/a margin – I would like to remove it.
Hi @wpdz-user,
Yes it's a padding. This CSS code should help to remove it.
#wc-comment-header {
padding-left: 0px !important;
}