Notifications
Clear all

[Solved] Remove all icons?

6 Posts
3 Users
1 Likes
1,618 Views
(@wpdz-user)
New Member
Joined: 5 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: 6 years ago
Posts: 5858
 

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: 5 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: 6 years ago
Posts: 5858
 

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: 5 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: 10 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