Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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.
Hi @wpdz-user,
Yes it's a padding. This CSS code should help to remove it.
#wc-comment-header {
padding-left: 0px !important;
}