안녕하세요,
현재 코스모팜사의 KBoard를 유용히 사용하고 있습니다, 감사합니다.
몇 가지 질문이 있습니다:
1. 댓글을 입력해야 할 때 어차피 익명으로 나오게 설정을 해두어서 author/password 필드를 지우고 싶습니다. Author/password 없이도 댓글 달 수 있게끔요
2. 댓글 달 시에 attachment 나 이미지 필드도 없애려면 어떻게 해야하나요?
감사합니다 :)
+ 익명게시판에 관련해서 질문드립니다
1. top 3개의 글을 위로 올리는 코드가 있는데 이를 적용시킬 수 있는 방법이 있나요?
2. 익명게시판에 공지글은 어떻게 쓰나요?
미리 감사드립니다 !!
안녕하세요~^^
KBoard 댓글 플러그인에서 작성자, 비밀번호 필드를 안 보이게 하고
이미지, 첨부파일 필드를 안 보이게 하시려면
FTP로 접속해서 /wp-content/plugins/kboard-comments/skin/사용중인스킨/list.php 파일에
아래의 코드를 찾아서
<?php if(is_user_logged_in()):?>
<input type="hidden" name="member_display" value="<?php echo $member_display?>">
<?php else:?>
<div class="comments-field field-member-display">
<label class="comments-field-label" for="comment_member_display_<?php echo $content_uid?>"><?php echo __('Author', 'kboard-comments')?></label>
<input type="text" id="comment_member_display_<?php echo $content_uid?>" name="member_display" value="<?php echo $temporary->member_display?>" placeholder="<?php echo __('Author', 'kboard-comments')?>..." required>
</div>
<div class="comments-field field-password">
<label class="comments-field-label" for="comment_password_<?php echo $content_uid?>"><?php echo __('Password', 'kboard-comments')?></label>
<input type="password" id="comment_password_<?php echo $content_uid?>" name="password" value="" placeholder="<?php echo __('Password', 'kboard-comments')?>..." required>
</div>
<?php endif?>
<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>
아래의 코드로 교체해보시겠어요?
<?php if(is_user_logged_in()):?>
<input type="hidden" name="member_display" value="익명">
<?php else:?>
<input type="hidden" name="member_display" value="익명">
<input type="hidden" name="password" value="<?php echo uniqid()?>">
<?php endif?>
<?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>
*/?>
고맙습니다.
1. top 3개의 글을 위로 올리는 코드가 있는데 이를 적용시킬 수 있는 방법이 있나요?
=> 해당 코드는 어떤 건지요?
참고하신 링크가 있으면 올려주시겠어요?
2. 익명게시판에 공지글은 어떻게 쓰나요?
=> KBoard 플러그인에서 공지글은 게시글 작성 시
옵션 필드의 공지사항 체크박스를 체크한 후 게시글을 작성해주시면 됩니다.
스킨에 따라서 공지사항을 지원하지 않을 수도 있습니다.
고맙습니다.