사용후기 문의
본문
사용후기 글쓰기 버튼을 클릭하면 후기쓰는 새창이 뜨잖아요
근데 아래그림처럼 내용입력부분이 에디터로 되어있는데 에디터를 없애고 그냥 글만 쓰게끔 하려면 어떻게 해야하나요?
itemuseform.skin.php 소스를 보니까
<tr>
<th scope="row"><label for="" style="width:200px;">내용</label></th>
<td><?php echo $editor_html; ?></td>
</tr>
여기부분을 수정하면 될것같은데 어떻게 해야하나요?
답변 1
<?php echo $editor_html; ?>
여기를 이렇게 수정.
<textarea id="is_content" name="is_content" rows="5"><?php echo $use['is_content'] ?></textarea>
답변을 작성하시기 전에 로그인 해주세요.