게시판 (basic)스킨에서...댓글 폼 일부 변경하려면???
본문
답변 1
theme/basic/skin/board/basic/view_comment.skin.php
<?php if ($is_guest) { ?>
<tr>
<th scope="row"><label for="wr_name">이름<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="wr_name" value="<?php echo get_cookie("ck_sns_name"); ?>" id="wr_name" required class="frm_input required" size="5" maxLength="20"></td>
</tr>
<tr>
<th scope="row"><label for="wr_password">비밀번호<strong class="sound_only"> 필수</strong></label></th>
<td><input type="password" name="wr_password" id="wr_password" required class="frm_input required" size="10" maxLength="20"></td>
</tr>
<?php } ?>
<tr>
<th scope="row"><label for="wr_secret">비밀글사용</label></th>
<td><input type="checkbox" name="wr_secret" value="secret" id="wr_secret"></td>
</tr>
로 수정 <?php if ($is_guest) { ?>
<tr>
<td><label for="wr_name">이름<strong class="sound_only"> 필수</strong></label>
<input type="text" name="wr_name" value="<?php echo get_cookie("ck_sns_name"); ?>" id="wr_name" required class="frm_input required" size="5" maxLength="20"></td>
<td><label for="wr_password">비밀번호<strong class="sound_only"> 필수</strong></label>
<input type="password" name="wr_password" id="wr_password" required class="frm_input required" size="10" maxLength="20">
<?php } ?>
<label for="wr_secret">비밀글사용</label>
<input type="checkbox" name="wr_secret" value="secret" id="wr_secret"></td>
</tr>
답변을 작성하시기 전에 로그인 해주세요.