웹진형 최근게시물 가로형태 를 쓰고 있는데 새로운 코멘트 올라오면
코멘트색 바뀌는 전에 쓰던 팁이 안먹히는군요
기본 스킨을 썼었거든요....어떻게 가능하면 좀 부탁드립니다
아래와 같은 팁을 썼었거든요....
// 최근 글 목록 (일반 게시판 형)
function print_bbs($skinname, $title, $id, $num=5, $textlen=30, $datetype="Y/m/d") {
global $_zb_path, $_zb_url, $connect, $t_board, $t_comment, $admin_table;
================================================================================================================
이와 같은 부분을 찾으셔서 위와 같이 $t_comment를 삽입합니다.
그리고 조금 아래로 내려오다가
if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
이 부분을 찾으셔서 주석처리 해 주시고 아래부분을 첨가합니다.
================================================================================================================
// 코멘트 갯수 원래 있던 것
// if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
// 코멘트 갯수 새로운 코멘트가 올라오면 색깔 바뀌게..
if($data[total_comment]) {
$last_comment = mysql_fetch_array(mysql_query("select * from $t_comment"."_$id where parent='$data[no]' order by reg_date desc limit 1", $connect));
$last_comment_time = $last_comment[reg_date];
if(time()-$last_comment_time<60*60*24) $comment = "<font color=blue>[".$data[total_comment]."]</font>";
// 위의 blue 부분을 수정하셔서 원하는 색깔로 바꾸실 수 있습니다.
else $comment = "[".$data[total_comment]."]";
} else $comment="";
코멘트색 바뀌는 전에 쓰던 팁이 안먹히는군요
기본 스킨을 썼었거든요....어떻게 가능하면 좀 부탁드립니다
아래와 같은 팁을 썼었거든요....
// 최근 글 목록 (일반 게시판 형)
function print_bbs($skinname, $title, $id, $num=5, $textlen=30, $datetype="Y/m/d") {
global $_zb_path, $_zb_url, $connect, $t_board, $t_comment, $admin_table;
================================================================================================================
이와 같은 부분을 찾으셔서 위와 같이 $t_comment를 삽입합니다.
그리고 조금 아래로 내려오다가
if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
이 부분을 찾으셔서 주석처리 해 주시고 아래부분을 첨가합니다.
================================================================================================================
// 코멘트 갯수 원래 있던 것
// if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
// 코멘트 갯수 새로운 코멘트가 올라오면 색깔 바뀌게..
if($data[total_comment]) {
$last_comment = mysql_fetch_array(mysql_query("select * from $t_comment"."_$id where parent='$data[no]' order by reg_date desc limit 1", $connect));
$last_comment_time = $last_comment[reg_date];
if(time()-$last_comment_time<60*60*24) $comment = "<font color=blue>[".$data[total_comment]."]</font>";
// 위의 blue 부분을 수정하셔서 원하는 색깔로 바꾸실 수 있습니다.
else $comment = "[".$data[total_comment]."]";
} else $comment="";