Title: &#8220;Sexy Comments&#8221; plugin
Last modified: August 18, 2016

---

# “Sexy Comments” plugin

 *  [onemansgoal](https://wordpress.org/support/users/onemansgoal/)
 * (@onemansgoal)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/)
 * I just downloaded the sexy comments plugin for my wordpress blog. The installation
   instructions are hazy at best.
 * > _Locate the template file(s) in your theme that loops over and displays comments.
   > Remove that comment output loop and replace with:_
   > Does anyone have an example of the code I may be looking for? I’ve been doing
   > the whole trial and error thing for over an hour now and I can’t get it to 
   > work.
   > I’m using the “nobus” theme if it helps

Viewing 8 replies - 1 through 8 (of 8 total)

 *  [Dgold](https://wordpress.org/support/users/dgold/)
 * (@dgold)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590407)
 * well, I don’t know the nobus theme, but the comment displaying code is probably
   in single.php (or, your Single Post template, if you know which one that is).
 * And that section of code will definitely have the word “comment” in it, so you
   could open the template file in a text editor and search for “comment.” Then,
   if you still don’t know what to delete, maybe paste that section of code on Pastebin(
   dot com) and put the link to it here so we can see.
 *  Thread Starter [onemansgoal](https://wordpress.org/support/users/onemansgoal/)
 * (@onemansgoal)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590518)
 * [moderated – too much code. Please either place the code in a txt file on your
   site with a link here or use a pastebin service such as [http://wordpress.pastebin.ca]](http://wordpress.pastebin.ca])
 *  Thread Starter [onemansgoal](https://wordpress.org/support/users/onemansgoal/)
 * (@onemansgoal)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590519)
 * that is the code… here are the installation instructions.
 * > Locate the template file(s) in your theme that loops over and displays comments.
   > Remove that comment output loop and replace with:
   > can anyone help?
 *  [Chris_K](https://wordpress.org/support/users/handysolo/)
 * (@handysolo)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590520)
 * Check your themes comments.php. That tends to be where most themes keep their
   Comments loop.
 *  Thread Starter [onemansgoal](https://wordpress.org/support/users/onemansgoal/)
 * (@onemansgoal)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590567)
 * Yeah I know where to check, I don’t know what code I’m supposed to be looking
   for
 *  [Dgold](https://wordpress.org/support/users/dgold/)
 * (@dgold)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590571)
 * The posts above seem to give you some suggestions for locating that code.
 * I know it seems confusing at first, but just look for the section of code talking
   about “comments”. Like, do a Find for the word “comment” and see what you find.
 * And/or put all the code on pastebin for us to see
 *  [keral](https://wordpress.org/support/users/keral/)
 * (@keral)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590572)
 * I have just removed the comments block in whole due to spamming problems from
   my blog.
 * I do miss the comments and discussions on my blog at [http://www.keralpatel.com](http://www.keralpatel.com)
   but then I am fed up of wasting time deleting the comments.
 *  [kilerb](https://wordpress.org/support/users/kilerb/)
 * (@kilerb)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590642)
 * I’m having trouble finding the comments loop too. I’m not using the default theme,
   so my comments.php does not look like the example they have at all. There’s a
   lot and i don’t know what to take out or leave. I’ll paste the code here from
   my comments.php in the custom theme I use in case anyone can tell me really quick
   what needs to be replaced. Appreciate it!
 *     ```
       <?php if ( !empty($post->post_password) && $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
       <p><?php _e('Enter your password to view comments.'); ?></p>
       <?php return; endif; ?>
   
       <h2 id="comments"><?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?>
       <?php if ( comments_open() ) : ?>
       	<a href="#postcomment" title="<?php _e("Leave a comment"); ?>">&raquo;</a>
       <?php endif; ?>
       </h2>
   
       <?php if ( $comments ) : ?>
       <ul id="commentlist">
   
       <?php foreach ($comments as $comment) : ?>
       	<li id="comment-<?php comment_ID() ?>">
       	<?php comment_text() ?>
       	<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
       	</li>
   
       <?php endforeach; ?>
   
       </ul>
   
       <?php else : // If there are no comments yet ?>
       	<p><?php _e('No comments yet.'); ?></p>
       <?php endif; ?>
   
       <?php if ( comments_open() ) : ?>
       <h2 id="postcomment"><?php _e('Leave a comment'); ?></h2>
   
       <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
       <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
       <?php else : ?>
   
       <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
   
       <?php if ( $user_ID ) : ?>
   
       <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout &raquo;</a></p>
   
       <?php else : ?>
   
       <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
       <label for="author"><small>Name <?php if ($req) _e('(required)'); ?></small></label></p>
   
       <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
       <label for="email"><small>Mail (will not be published) <?php if ($req) _e('(required)'); ?></small></label></p>
   
       <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
       <label for="url"><small>Website</small></label></p>
   
       <?php endif; ?>
   
       <!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
   
       <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
   
       <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
       <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
       </p>
       <?php do_action('comment_form', $post->ID); ?>
   
       </form>
   
       <?php endif; // If registration required and not logged in ?>
   
       <?php else : // Comments are closed ?>
       <p><?php _e('Sorry, the comment form is closed at this time.'); ?></p>
       <?php endif; ?>
       ```
   

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘“Sexy Comments” plugin’ is closed to new replies.

 * 8 replies
 * 5 participants
 * Last reply from: [kilerb](https://wordpress.org/support/users/kilerb/)
 * Last activity: [18 years, 3 months ago](https://wordpress.org/support/topic/sexy-comments-plugin/#post-590642)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
