Link to home
Start Free TrialLog in
Avatar of jonathanduane2010
jonathanduane2010

asked on

how to remove text from wordpress site

Hi Guys,

How can i remove "comments are closed" from my page? http://iradionortheast.com/news/

All across the site? maybe some css
Avatar of Nathan Riley
Nathan Riley
Flag of United States of America image

Add this to your css file.

#comments{
display:none;
}
Do you want to remove all comments completely (open and closed) or just the message when they are closed?
Look at the templates that is generating the comments.  the text is in a paragraph tag.  There is probably some logic that causes it to print. Either remove it or change the logic.

Cd&
Avatar of jonathanduane2010
jonathanduane2010

ASKER

perfect ! could i do the same for

"MY ACCOUNT" "CHECKOUT"

on the home page?
ASKER CERTIFIED SOLUTION
Avatar of Nathan Riley
Nathan Riley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial