Removing "No Comments" text in wordpress

Pauli66

Regular Member
Joined
May 4, 2012
Messages
322
Reaction score
89
Hi I am using the Avenue Wordpress theme. I have a Recent Post section on the R.H.S sidebar. I am trying to remove the "No Comments" text as highlighted in the picture below. I cannot seem to figure it out???

1.jpg

Thanks
 
Hi I am using the Avenue Wordpress theme. I have a Recent Post section on the R.H.S sidebar. I am trying to remove the "No Comments" text as highlighted in the picture below. I cannot seem to figure it out???

View attachment 28501

Thanks

If you don't want comments at all you can disable them in the settings, and that might help with the "No Comments" problem. I'm not sure if you can remove the "No Comments" part though.
 
I'm sure you just have to edit a .php file. Something is putting it there, so deleting that will remove it. Honestly, I wouldn't worry about it.
 
not sure it's in index.php or single.php but you'll find this code:
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>

to make it disapear change bold words with blank.
wish it help.
 
You can do it with CSS:[FONT=Consolas, Lucida Console, monospace] .block-meta{display:none;}[/FONT]
 
Like dewaz said, you can look index.php, single.php or in functions.php. Just search for that text "no comments".
 
yeah it's in the comment.php. I deleted it and tried changing the name but still staying the same. This is the line

<h3><?php comments_number(__('No Comments', 'Avenue'), __('One Comment', 'Avenue'), __('% Comments', 'Avenue'));?> <span class="arrows">»</span></h3>
 
Show me the live link i will make it invisible via CSS if it have to be done through PHP back end then add me on skype : floralchamp
 
Back
Top