1. 정확한 제품 또는 플러그인 이름
default
2. 상세 내용
비회원일때 댓글 갯수가 3개만 보여지고, 회원일 경우 무제한으로 보여지게 하고 싶습니다.
3. 확인 가능한 상세 페이지 주소
https://balletzip.com/
4. 수정한 코드 내역 (있다면)
안녕하세요~^^
사용중인 댓글 스킨의 list-template.php 파일 중
아래 코드를 찾아서
<?php while($comment = $commentList->hasNext()): $commentURL->setCommentUID($comment->uid);?>
아래 코드처럼 변경해보시겠어요?
<?php $i=1; while($comment = $commentList->hasNext()): $commentURL->setCommentUID($comment->uid); if(!is_user_logged_in() && $i == 3) { break; } ++$i ?>
고맙습니다.