Notifications
Clear all

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.

 

[Solved] Remove all icons?

6 Posts
3 Users
1 Reactions
2,613 Views
(@wpdz-user)
New Member
Joined: 7 years ago
Posts: 3
Topic starter  

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? 


   
Astghik
(@astgh)
Illustrious Member Admin
Joined: 8 years ago
Posts: 6444
 

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;
}

   
(@wpdz-user)
New Member
Joined: 7 years ago
Posts: 3
Topic starter  

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).


   
Astghik
(@astgh)
Illustrious Member Admin
Joined: 8 years ago
Posts: 6444
 

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. 


   
(@wpdz-user)
New Member
Joined: 7 years ago
Posts: 3
Topic starter  

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.  

wpdiscuz screenshot

   
Arina
(@arina)
Support Team
Joined: 11 years ago
Posts: 101
 

Hi @wpdz-user,

Yes it's a padding. This CSS code should help to remove it.

#wc-comment-header {
padding-left: 0px !important;
}

   
wpdz user reacted
Share:
Scroll to top