특정 게시판 내용 없이 글 등록하기
관리자 18-01-26 20:05
1. bbs/write.php 파일 수정
$editor_js .= chk_editor_js('wr_content', $is_dhtml_editor);
여기를 이렇게 수정
if ($bo_table != 'notice') {
$editor_js .= chk_editor_js('wr_content', $is_dhtml_editor);
}
2. bbs/write_update.php 파일 수정
$msg[] = '<strong>내용</strong>을 입력하세요.';
여기를 이렇게 수정
if ($bo_table != 'notice') {
$msg[] = '<strong>내용</strong>을 입력하세요.';
}
notice 부분을 원하는 게시판id로 수정
내용 입력란 자체를 삭제하는 방법은 참고하세요.
http://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=53
로그인 후 댓글 작성 가능합니다.