Posts: 457
Name: Randy
Location: Northern Wisconsin
|
Your should have a comments.php file. This is located in your template file folder(wp-content/themes/youtthemename/)
Depending on how the comments are listed, you may see where to remove that specific data.
However, if there is something in place that looks like this:
PHP Code:
<ol class="commentlist">
<?php wp_list_comments('avatar_size=48'); ?>
</ol>
In the latter case you can see what classes have been dynamically added to each comment element while viewing the source code(or better yet viewing in firebug). Then you can perhaps alter the CSS to display:none; for the items you want removed. This way you don't have to mess with the template file at all.
It really depends on how your comments template is set coded.
|