-
Daniel TaraKeymaster
Hi,
To disable the comments are closed on pages, open comments.php and replace this line:
<p class="nocomments"><?php _e('Comments are closed.','cover-wp') ?></p>
with this:
<?php if( !is_page() ) : ?> <p class="nocomments"><?php _e('Comments are closed.','cover-wp') ?></p> <?php endif; ?>
About the drop-down menus, the issue is present only in Internet explorer, but if you’d like to remove it add the following to style.css:
ul#menu li li { margin-top:0; }
geroidoParticipantI’m having a similar problem. I want to remove all of the following traces of comments from my pages:
Comments are closed. Posted by geroido
on May 26, 2011
Filed under Contact UsHow can I remove these from all of my posts????
Daniel TaraKeymasterDelete the elements [code]<p class=”postmeta”>[/code] and [code]<p class=”details”>[/code] from all template files where they appear.
cocoParticipantDaniel,
I am having the same problem as Vijmat however, as I am VERY new to all this i don’t know where to go to find ‘comments.php’ so that I can replace the code. Can you guide me through it?
gdaniels99ParticipantCoco,
Go to your Dashboard. In the left sidebar find the section called Appearance. Click on it and it opens up to reveal more options. Click on Editor. This takes you to the Edit Themes page. Running down the right side of the screen will be a list of files under the heading Templates. This is where you will find comments.php. Just click on it, make your changes and save those changes.
You can use this area to customize all sorts of things about your site. For instance, at my site [url=http://therealmayanprophecies.com]TheRealMayanProphecies.com[/url] I added a featured article slider at the top of my homepage. The more you learn about how wordpress works, the more you can customize your themes for your own purpose.
Tagged: comments, navigation
You must be logged in to reply to this topic.