제목이 필수영역이던데 안나오게 하는방법ㅜ
본문
답변 6
<span class="bo_v_tit"
<?php
if ($w == "u") {
echo " style='display:none' ";
}
?> >
<?php
echo cut_str(get_text($view['wr_subject']), 70); // 글제목 출력
?></span>
<input type="text" => <input type="hidden" ~~
/bbs/content.php?co_id=company
이 페이지 인데 이 페이지 자체를 못찾겠습니다...
ftp로 접속했을때 저기 경로가 없습니다.ㅜㅜ
윗분이 이미 적어주셧네
보통 회사 소개는
제목이 필수다.. 라고 하신부분은
커스텀된 내용으로 보여집니다.
제가 먼저 쓴글에 적어 놓은건
view.skin.php 파일의 일반적인 제목을 감추는 형태구요
위의 화면영역은
/adm/contentform.php?w=u&co_id=company
여기에 있네요
/adm/contentform.php
파일을 열어서
<tr>
<th scope="row"><label for="co_subject">제목</label></th>
<td><input type="text" name="co_subject" value="<?php echo htmlspecialchars2($co['co_subject']); ?>" id="co_subject" required class="frm_input required" size="90"></td>
</tr>
영역에서
<tr >
<th scope="row"><label for="co_subject">제목</label></th>
<td><input type="text" name="co_subject" value="<?php echo htmlspecialchars2($co['co_subject']); ?>" id="co_subject" class="frm_input " size="90"></td>
</tr>
와 같이 하시고
하단에
function frmcontentform_check(f)
{
errmsg = "";
errfld = "";
<?php echo get_editor_js('co_content'); ?>
<?php echo chk_editor_js('co_content'); ?>
<?php echo get_editor_js('co_mobile_content'); ?>
check_field(f.co_id, "ID를 입력하세요.");
// check_field(f.co_subject, "제목을 입력하세요."); // 이걸 주석처리
check_field(f.co_content, "내용을 입력하세요.");
if (errmsg != "") {
alert(errmsg);
errfld.focus();
return false;
}
return true;
}
</script>
하시면 됩니다.
input readonly 로 해도 이쁠것 같네요.