안녕하세요?
워드프레스 KBoard 댓글에 체크박스를 넣는 방법이 따로 있는지 궁금합니다.
검색해서 나온 방법으로 본문에는 적용이 잘 되는데 댓글은 안되네요ㅠㅠ
KBoard 댓글 플러그인 버전을 최신버전으로 업데이트 해주신 후
테스트로 아래 코드를 댓글 스킨의 list.php 파일에 추가해주세요. <form></form> 태그 사이에 추가해주세요.
/wp-content/plugins/kboard-comments/skin/default/list.php
<div class="comments-field">
<label class="comments-field-label">test</label>
<input type="checkbox" name="comment_option_test1" value="옵션1">옵션1
<input type="checkbox" name="comment_option_test2" value="옵션2">옵션2
<input type="checkbox" name="comment_option_test3" value="옵션3">옵션3
</div>
그 다음 댓글 스킨의 list-template.php 파일에 출력 코드를 추가해주세요.
<?php echo $comment->option->test1?>
<?php echo $comment->option->test2?>
<?php echo $comment->option->test3?>
테스트 해보시겠어요?
잘 적용되었습니다! 감사합니다٩(ˊᗜˋ*)و