View Single Post
Old 11-24-2009, 09:44 AM  
phoqu
Registered User
 
phoqu's Avatar
 
Join Date: Sep 2009
Posts: 58

Looks like you're using a customized theme_16 theme for Wordpress; here's exactly what to do.
  1. Open up the file comments.php file either in via the Wordpress admin editor or in a text editor (the file's located in the wp-content/themes/thesis_16 directory).
  2. Search for the following code snippet:
    PHP Code:
    if (!comments_open()) {
    ?>
      <div class="comments_closed">
        <p><?php _e('Comments on this entry are closed.''thesis'); ?></p>
      </div>
    <?php
    }
  3. Either remove all of the above code, or just comment it out like so:
    PHP Code:
    if (!comments_open()) {
    ?>
      <div class="comments_closed">
        <p><?php // _e('Comments on this entry are closed.', 'thesis'); ?></p>
      </div>
    <?php
    }
  4. i.e.
    PHP Code:
    <?php  _e('Comments on this entry are closed.''thesis'); ?></p>
    becomes
    PHP Code:
    <?php // _e('Comments on this entry are closed.', 'thesis'); ?></p>
Let me know if that works for you and if it's worthy of 20k banner impressions

PS: If you're absolutely positive that you won't use comments again in the future just remove all of the above code completely - everything from if to } - this willl lead to slightly better performance.
__________________

www.PHOQU.com

Web Developer/Engineer/Hacker ::Expert Wordpress, PHP, MySQL, Ruby on Rails Support. Sub-contracting gigs accepted too.

Code:
<?php $skills->include('php', 'ruby', 'java', 'javascript', 'wordpress', 'joomla', 'drupal', 'rails', 'html', 'css', 'xml', 'mysql', 'oracle', 'postgres'); ?>
phoqu is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook