안녕하세요
KBoard 카드 갤러리 스킨을 구매 설치 후 관리자가 아닌 일반회원으로 로그인하여 글쓰기를 해보니
(1) 비밀글과 공지사항을 선택할 수 있도록 되어있네요 일반회원이 비밀글과 공지사항을 선택할 수 없도록 하고싶습니다.
(2) 미디어 첨부기능이 있어서 아래의 첨부파일을 삭제하고 싶은데 안되네요 (무료게시판에서는 첨부파일 '없음'으로 삭제되었고.. 테마를 바꿔보며 해도 안되네요)
(3) 카드갤러리 게시판에 동영상도 사진과 마찮가지로 업로드 할 수 있는 방법이 없을까요 (동영상 별도게시판 말고요)
안녕하세요~^^
FTP로 접속해서 스킨 파일을 수정해주셔야합니다.
/wp-content/plugins/kboard/skin/card-gallery/editor.php 파일을 편집해주세요.
1. 관리자만 비밀글과 공지사항을 선택하게끔 하시려면
<div class="kboard-attr-row">
<div class="attr-name"><?php echo __('옵션', 'kboard')?></div>
<div class="attr-value">
<label class="attr-value-option"><input type="checkbox" name="secret" value="true"<?php if($content->secret):?> checked<?php endif?>> <?php echo __('Secret', 'kboard')?></label>
<?php if($board->isAdmin()):?>
<label class="attr-value-option"><input type="checkbox" name="notice" value="true"<?php if($content->notice):?> checked<?php endif?>> <?php echo __('Notice', 'kboard')?></label>
<?php endif?>
</div>
</div>
위 코드를 찾아서 아래 코드로 바꿔주세요.
<div class="kboard-attr-row">
<div class="attr-name"><?php echo __('옵션', 'kboard')?></div>
<div class="attr-value">
<?php if($board->isAdmin()):?>
<label class="attr-value-option"><input type="checkbox" name="secret" value="true"<?php if($content->secret):?> checked<?php endif?>> <?php echo __('Secret', 'kboard')?></label>
<label class="attr-value-option"><input type="checkbox" name="notice" value="true"<?php if($content->notice):?> checked<?php endif?>> <?php echo __('Notice', 'kboard')?></label>
<?php endif?>
</div>
</div>
2. 첨부파일을 삭제 하시려면 아래 코드를 찾아서 지워주세요.
<div class="kboard-attr-row">
<label class="attr-name" for="kboard-input-file1"><?php echo __('Attachment', 'kboard')?>1</label>
<div class="attr-value">
<?php if(isset($content->attach->file1)):?><?php echo $content->attach->file1[1]?> - <a href="<?php echo $url->getDeleteURLWithAttach($content->uid, 'file1');?>" onclick="return confirm('<?php echo __('Are you sure you want to delete?', 'kboard')?>');"><?php echo __('Delete file', 'kboard')?></a><?php endif?>
<input type="file" id="kboard-input-file1" name="kboard_attach_file1">
</div>
</div>
<div class="kboard-attr-row">
<label class="attr-name" for="kboard-input-file2"><?php echo __('Attachment', 'kboard')?>2</label>
<div class="attr-value">
<?php if(isset($content->attach->file2)):?><?php echo $content->attach->file2[1]?> - <a href="<?php echo $url->getDeleteURLWithAttach($content->uid, 'file2');?>" onclick="return confirm('<?php echo __('Are you sure you want to delete?', 'kboard')?>');"><?php echo __('Delete file', 'kboard')?></a><?php endif?>
<input type="file" id="kboard-input-file2" name="kboard_attach_file2">
</div>
</div>
3. 일반적인 첨부파일로 mp4 동영상을 업로드 할 수 있습니다.
다만 자동재생 관련 기능은 없기 때문에 단순 첨부파일로 표시됩니다.
업로드가 안되는 첨부파일은
워드프레스 관리자 -> KBoard -> 대시보드 페이지에서
첨부파일의 종류에 확장자를 추가해주세요.
고맙습니다.