안녕하세요
1. 다운로드 스킨을 사용중인데 첨부파일이 있는 게시물만 컬러를 다르게 할수 있을까요?
아래 이미지처럼 리스트에서 컬러가 변경됐으면 합니다.
2. 리스트에서 게시물 클릭시 새창으로 뜨게 하고싶은데 어디를 수정해야할까요?
안녕하세요~^^
다운로드 스킨 사용중에 파일이 업로드 된 게시글만
목록 색상을 변경하시고 싶으신건가요?
아래의 코드는 게시글에 첨부파일이 있는지 확인하는
코드입니다.
$content->isAttached()
wp-content/plugins/kboard/skin/download/list.php 파일에서
아래의 코드처럼 테이블의 td 클래스를 모두 찾아서
<td class="kboard-list-uid">
<td class="kboard-list-download">
<td class="kboard-list-title">
<td class="kboard-list-language">
<td class="kboard-list-date">
아래처럼 변경해주세요.
<td class="kboard-list-uid <?php if($content->isAttached()):?>uploaded_file<?php endif?>">
<td class="kboard-list-download <?php if($content->isAttached()):?>uploaded_file<?php endif?>">
<td class="kboard-list-title <?php if($content->isAttached()):?>uploaded_file<?php endif?>">
<td class="kboard-list-language <?php if($content->isAttached()):?>uploaded_file<?php endif?>">
<td class="kboard-list-date <?php if($content->isAttached()):?>uploaded_file<?php endif?>">
이후 style.css 파일이나 테마 css에
아래 코드를 적절히 수정하여 입력해보시겠어요?
td.uploaded_file { color: #글자색상; }
고맙습니다.