Forums

Admin Comments To Appear Different (9 posts)

  1. unscripted360
    Member
    Posted 3 years ago #

    Is there a plug in or something that would allow all admin comments on the site to be distinguished from regular subscribers comments'?

  2. viitoria
    Member
    Posted 3 years ago #

  3. unscripted360
    Member
    Posted 3 years ago #

    i'll try that out...i assume this is not just a plug in and will require some file editing?

  4. viitoria
    Member
    Posted 3 years ago #

    Yes, you need to edit the css (to specify how the comment will look different) and call the function in the comments.php template

  5. JonathanMurray
    Member
    Posted 3 years ago #

    I looked over several options/tutorials for this, and ended up with the following, which retains the odd/even styling as well as adding a style for author comment:

    <div class="
    <?php
    if ($comment->comment_author_email == "name@domain.com")
    echo "authorcomment";
    else
    if ($oddcomment)
    echo "odd-comment";
    else
    echo "even-comment";
    ?>" id="comment-<?php comment_ID() ?>">

    I then tooled around with .authorcomment { } in CSS to make it appear the way I wanted. (sample)

    I know next to nothing about PHP, so if anyone can point out how to add the equivalent of "and $comment->comment_author == 'name'", I'd appreciate it. The programmer in me also suggests there should be some "endif" statements in there, but when I tried to add them, I broke the page.

  6. unscripted360
    Member
    Posted 3 years ago #

    thanks guys..i'm gonna fiddle with it..it'd be nice to see an example of the author plug in to see if it actually works lol

  7. unscripted360
    Member
    Posted 3 years ago #

    ahh bugger. i can't get it to work..there was a reason i focused on design and not code lol

  8. fr3nzy17
    Member
    Posted 2 years ago #

  9. pizdin_dim
    Member
    Posted 2 years ago #

    Author Highlight works well.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags