1. 정확한 제품 또는 플러그인 이름
비즈커뮤니티를 사용하고 있습니다. Kboard 댓글 작성시나타나는 첨부파일 및 사진파일 업로드 박스를 없애고 싶습니다 (작성자, 비밀번호, Capcha 는 남겨두기)
2. 상세 내용
3. 확인 가능한 상세 페이지 주소
4. 수정한 코드 내역 (있다면)
안녕하세요~^^
댓글의 입력 필드는 KBoard 댓글 플러그인의
스킨에서 확인하실 수 있습니다.
kboard-comments/skin/{사용중인 스킨}/list.php 파일 내에서
아래 코드를 찾아 모두 삭제해보시겠어요?
<div class="comments-field field-image1">
<label class="comments-field-label" for="comment_image1_<?php echo $content_uid?>"><?php echo __('Photos', 'kboard-comments')?></label>
<input type="file" id="comment_image1_<?php echo $content_uid?>" name="comment_attach_image1" accept="image/*">
</div>
<div class="comments-field field-file1">
<label class="comments-field-label" for="comment_file1_<?php echo $content_uid?>"><?php echo __('Attachment', 'kboard-comments')?></label>
<input type="file" id="comment_file1_<?php echo $content_uid?>" name="comment_attach_file1">
</div>
고맙습니다.