Hi,
I have found a tutorial, how to highlight author's comment. Unfortunately I can't find any similar code parts in CORONA's files, where I can add this functionality as mentioned in this tutorial at point 9. Hightlight Author's Comment »».
I have looked at loop-comments.php and comments.php, but I can't find any similar to change this.
I have created my CSS for it:
.autorkommentar { background-color: #a882bd !important; }
The tutorials suggests to look in the comments.php for something similar like this:
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
to replace it with this:
<li class="<?php if ($comment->user_id == 1) $oddcomment = "authorstyle"; echo $oddcomment; ?>">
But I cannot find any code like the one I should search for. Can you please help me out? Thanks a lot.














