Title: barry91's Replies | WordPress.org

---

# barry91

  [  ](https://wordpress.org/support/users/barry91/)

 *   [Profile](https://wordpress.org/support/users/barry91/)
 *   [Topics Started](https://wordpress.org/support/users/barry91/topics/)
 *   [Replies Created](https://wordpress.org/support/users/barry91/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/barry91/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/barry91/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/barry91/engagements/)
 *   [Favorites](https://wordpress.org/support/users/barry91/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comment Themes](https://wordpress.org/support/topic/comment-themes/)
 *  [barry91](https://wordpress.org/support/users/barry91/)
 * (@barry91)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/comment-themes/#post-392559)
 * Well, the code i posted wasn’t the actual code, because i’m not supposed to post
   that (it’s spreadshirt’s property, not mine). I just posted how I did it, without
   using specific examples.
 * Do you want the ability to have separate comments looks for the admin and other
   users? Or do you just want the word bubbles?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comment Themes](https://wordpress.org/support/topic/comment-themes/)
 *  [barry91](https://wordpress.org/support/users/barry91/)
 * (@barry91)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/comment-themes/#post-392505)
 * Hello, I’m the designer of the ubershop site…um yeah the guy who forgot to put
   the wordpress link somewhere on the site. Believe me, it wasn’t intentional. 
   My bad.
 * I’m talking it over with bosses to put it somewhere on the site.
 * The comments are nothing special, just a css trick. And some PHP.
 * This is what the part in comments.php looks like. (Please not that this is only
   that part, and not the full comments.css)
 * `<div class="<?php if ($comment->user_id == "1") echo 'comment-admin';
    else 
   if ($comment->user_id == "1") echo 'comment-admin'; else if ($comment->user_id
   == "45") echo 'comment-250'; else if ($comment->user_id == "20") echo 'comment-
   employee'; else echo 'comment'; ?>" id="comment-<?php comment_ID() ?>"> <?php
   comment_text() ?> <p class="comment-tagline"><strong> <?php comment_author_link()?
   > <?php if ($comment->comment_approved == '0') : ?> <em>Your comment is awaiting
   moderation.</em> <?php endif; ?> </strong><span class="comment-date">on <?php
   comment_date('F jS, Y') ?> at <?php comment_time() ?></span> </div>
 * And then the css is like this
 * `
    .comment {global css stuff} .comment p (more global) .comment-admin {specific
   to admin users) .comment-250 {specific to 250 club members} etc

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