I have created new website in wordpress http://phoenixwebsolutions.net/ , you can see there is list of posts on home page. and you can see text on right corner "No comments" . same with other pages http://phoenixwebsolutions.net/about/, see msg. "Comments are closed." now i dont want this things to displayed on my website. i have tried everything, i have deleted wp-comments-post.php file, but i am not completely successful to vanish this texts. does anyone know how to remove this texts?
remove <?php comments_template(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> Code (markup): from index.php/page.php/single.php(theme file) file
to remove comments in homepage 1)open tapestries.php file in "library" folder located in ur theme directory. and remove the below code from that file. <span class="entry-comments"><?php comments_number() ?></span> Code (markup): to remove from posts (same procedure for pages pages.php) 1)open single.php file located in ur theme directory and remove the below code <a name="comments"></a> <?php comments_template('', true); ?> <?php arras_below_comments() ?> Code (markup):