답변 감사합니다! 한번 해봤는데 잘 안되는군요 으엉엉
찾아보니 bbs/qawrite.php를 수정해야 될 것 같아요ㅠㅠ
카테고리는 이렇게 만들어지고
<select name="qa_category" id="qa_category" required="" class="required">
<option value="">선택하세요</option>
<option value="APRICOT">APRICOT</option>
<option value="BANANA">BANANA</option>
<option value="CHERRY">CHERRY</option>
</select>
글 양식 부분은
<textarea id="qa_insert_content" name="qa_insert_content" rows="5">...</textarea>
이렇게 나오네요
그래서 bbs/qawrite.php의 이 부분을 수정해 줘야할 것 같은데 어렵군요ㅠㅠ
// 분류
$category_option = '';
if(trim($qaconfig['qa_category'])) {
$category = explode('|', $qaconfig['qa_category']);
for($i=0; $i<count($category); $i++) {
$category_option .= option_selected($category[$i], $write['qa_category']);
}
} else {
alert('1:1문의 설정에서 분류를 설정해 주십시오');
}
$is_dhtml_editor = false;
// 모바일에서는 DHTML 에디터 사용불가
if ($config['cf_editor'] && $qaconfig['qa_use_editor'] && !G5_IS_MOBILE) {
$is_dhtml_editor = true;
}
// 추가질문에서는 제목을 공백으로
if($w == 'r')
$write['qa_subject'] = '';
$content = '';
if ($w == '') {
$content = $qaconfig['qa_insert_content'];
} else if($w == 'r') {
if($is_dhtml_editor)
$content = '<div><br><br><br>====== 이전 답변내용 =======<br></div>';
else
$content = "\n\n\n\n====== 이전 답변내용 =======\n";
$content .= get_text($write['qa_content'], 0);
} else {
$content = get_text($write['qa_content'], 0);
}