관리자화면 기본정보
/adm/shop_admin/itemform.php
하기 부분을
<tr>
<th scope="row">상품설명</th>
<td colspan="2"> <?php echo editor_html('it_explan', $it['it_explan']); ?></td>
</tr>
<tr>
<th scope="row">모바일 상품설명</th>
<td colspan="2"> <?php echo editor_html('it_mobile_explan', $it['it_mobile_explan']); ?></td>
</tr>
아래와 같이 수정해야 하지 않을까요?
colspan="2" 삭제
<tr>
<th scope="row">상품설명</th>
<td><?php echo editor_html('it_explan', $it['it_explan']); ?></td>
</tr>
<tr>
<th scope="row">모바일 상품설명</th>
<td> <?php echo editor_html('it_mobile_explan', $it['it_mobile_explan']); ?></td>
</tr>
하기 부분을
<tr>
<th scope="row">상품설명</th>
<td colspan="2"> <?php echo editor_html('it_explan', $it['it_explan']); ?></td>
</tr>
<tr>
<th scope="row">모바일 상품설명</th>
<td colspan="2"> <?php echo editor_html('it_mobile_explan', $it['it_mobile_explan']); ?></td>
</tr>
아래와 같이 수정해야 하지 않을까요?
colspan="2" 삭제
<tr>
<th scope="row">상품설명</th>
<td><?php echo editor_html('it_explan', $it['it_explan']); ?></td>
</tr>
<tr>
<th scope="row">모바일 상품설명</th>
<td> <?php echo editor_html('it_mobile_explan', $it['it_mobile_explan']); ?></td>
</tr>
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 3개
그래서 colspan="2" 속성이 들어가 있어야 합니다.
관리자데모 http://demo.sir.co.kr/gnuboard5/adm/shop_admin/itemform.php
기본정보쪽에 페이지 확인부탁드려요!!!
에디터를 ckeditor로 변경하셔셔서 테스트 해보시기 바랍니다.
추가적으로 cheditor 제작사에도 문의를 해보도록 하겠습니다.