안녕하세요,
현재 KBoard 포럼원 커뮤니티 스킨을 구매해서 사용중입니다.
게시물에 들어가면 게시물 하단에 작성자/작성일/조회수/좋아요/싫어요/인쇄 부분이 나오는데
그 부분을 안보이게 수정하고 싶습니다.
어느 부분을 수정하면 안보이게 할 수 있는지 방법좀 부탁드립니다.
안녕하세요~^^
FTP로 접속 후 스킨 파일을 편집해주셔야할 듯합니다.
/wp-content/plugins/kboard/skin/forum-one/document.php 파일을 편집해주세요.
아래 코드를 찾아서 지우시면 될 것 같습니다.
<div class="kboard-detail">
<a>
<?php echo get_avatar($content->member_uid, 20, '', $content->member_display, array('class'=>'kboard-avatar'))?>
<?php echo apply_filters('kboard_user_display', $content->member_display, $content->member_uid, $content->member_display, 'kboard', $boardBuilder)?>
</a>
·
<?php echo date('Y-m-d H:i', strtotime($content->date))?>
·
<?php echo __('Views', 'kboard')?> <?php echo $content->view?>
<?php if($content->category1):?>
·
<a href="<?php echo $url->set('category1', $content->category1)->set('pageid', '')->set('target', '')->set('keyword', '')->set('mod', '')->toString()?>#kboard-forum-one-list"><?php echo $content->category1?></a>
<?php endif?>
<?php if($content->category2):?>
·
<a href="<?php echo $url->set('category2', $content->category2)->set('pageid', '')->set('target', '')->set('keyword', '')->set('mod', '')->toString()?>#kboard-forum-one-list"><?php echo $content->category2?></a>
<?php endif?>
<?php if($content->option->tree_category_1):?>
<?php for($i=1; $i<=$content->getTreeCategoryDepth(); $i++):?>
<?php echo $content->option->{'tree_category_'.$i}?>
<?php endfor?>
<?php endif?>
</div>
<div class="kboard-document-action">
<div class="left">
<button type="button" class="kboard-button-action kboard-button-like" onclick="kboard_document_like(this)" data-uid="<?php echo $content->uid?>" title="<?php echo __('Like', 'kboard')?>"><?php echo __('Like', 'kboard')?> <span class="kboard-document-like-count"><?php echo intval($content->like)?></span></button>
<button type="button" class="kboard-button-action kboard-button-unlike" onclick="kboard_document_unlike(this)" data-uid="<?php echo $content->uid?>" title="<?php echo __('Unlike', 'kboard')?>"><?php echo __('Unlike', 'kboard')?> <span class="kboard-document-unlike-count"><?php echo intval($content->unlike)?></span></button>
</div>
<div class="right">
<button type="button" class="kboard-button-action kboard-button-print" onclick="kboard_document_print('<?php echo $url->getDocumentPrint($content->uid)?>')" title="<?php echo __('Print', 'kboard')?>"><?php echo __('Print', 'kboard')?></button>
</div>
</div>
고맙습니다.
오류없이 하단부분이 안보이게 수정됐습니다
답변 정말 감사합니다!