글쓰기에서 이메일, 홈페이지 란을 없애고 싶습니다
본문
방법이 없을까요????
답변 1
해당 게시판 스킨 폴더에 있는 write.skin.php 파일에서 아래 내용 삭제
<?php if ($is_email) { ?>
<label for="wr_email" class="sound_only">이메일</label>
<input type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" class="frm_input email " placeholder="이메일">
<?php } ?>
</div>
<?php if ($is_homepage) { ?>
<div class="write_div">
<label for="wr_homepage" class="sound_only">홈페이지</label>
<input type="text" name="wr_homepage" value="<?php echo $homepage ?>" id="wr_homepage" class="frm_input full_input" size="50" placeholder="홈페이지">
</div>
<?php } ?>
답변을 작성하시기 전에 로그인 해주세요.