답변 3개
/skin/shop/basic/boxcommunity.skin.php
$hsql = " select bo_table, bo_subject from {$g5['board_table']} where bo_table != '유머게시판 ID' order by gr_id, bo_table ";
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
여러 게시판은 이런식으로 하면 되요
'', 여기안에 추가
$table_ex = "'공지사항', '자유게시판'";
$hsql = " select bo_table, bo_subject from {$g5['board_table']} where bo_table not in ($table_ex) order by gr_id, bo_table ";
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
수정파일 : /skin/shop/basic/boxcommunity.skin.php
여기를..
$hsql = " select bo_table, bo_subject from {$g5['board_table']} order by gr_id, bo_table ";
이렇게 수정..
$hsql = " select bo_table, bo_subject from {$g5['board_table']} where bo_table not in ('유머게시판id') order by gr_id, bo_table ";
답변에 대한 댓글 5개
여러개 안보이게 하려면 어떻게 해요?
자유게시판, 공지사항 등 이렇게 여러개 안보이게 하려면
('notice','free','qa') 이런식으로..
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인