안녕하세요!
댓글 관련 문의 드립니다.
회원이 원글 작성하면 거기에 다른 회원이 댓글을 달게 되는데.. 이때 또다른 회원이 단 댓글을 볼수 없게
본인이 단 댓글만 보이도록 하고 싶습니다.
(댓글 다는 회원들은 회원등급이 일반 회원보다 높게 설정 됩니다.)
물론 원글 작성 회원과 관리자는 모든 댓글을 볼수 있게 하고 싶은데 가능 한지요?
감사합니다.
댓글 스킨을 수정하시면 가능합니다.
/wp-content/plugins/kboard-comments/skin/default/list-template.php 파일을 수정해주세요.
<div class="comments-list-content" itemprop="description">
<?php echo nl2br($comment->content)?>
</div>
위 코드를 찾아서 아래 코드로 바꿔보시겠어요?
<div class="comments-list-content" itemprop="description">
<?php
$content = new KBContent();
$content->initWithUID($content_uid);
?>
<?php if($comment->user_uid == get_current_user_id() || $content->member_uid == get_current_user_id() || $board->isAdmin()):?>
<?php echo nl2br($comment->content)?>
<?php else:?>
본인만 확인할 수 있습니다.
<?php endif?>
</div>
댓글이 표시되는 사람은 다음과 같습니다.
1. 댓글 작성자 본인 : $comment->user_uid == get_current_user_id()
2. 원글(게시글) 작성자 본인 : $content->member_uid == get_current_user_id()
3. 관리자 : $board->isAdmin()
테스트 해보시겠어요?
정말 감사합니다. 잘 되요!!