상품문의 글 무조건 비밀글로 하는 법
본문
상품문의 글 무조건 비밀글로 하는 법
지금은 체크해야지 비밀글로 나오게 끔 되어있습니다.
그냥 무저건 비밀글로 문의 할는 법좀 알려주세요.
답변 1
테마명/skin/shop/basic/itemqaform.skin.php 파일에서
<input type="hidden" name="iq_secret" value="1"> 추가
위치는 대략 여기.
<input type="hidden" name="w" value="<?php echo $w; ?>">
<input type="hidden" name="it_id" value="<?php echo $it_id; ?>">
<input type="hidden" name="iq_id" value="<?php echo $iq_id; ?>">
<input type="hidden" name="iq_secret" value="1">
같은 파일에서 이 부분 삭제하거나 주석처리.
<tr>
<th scope="row">옵션</th>
<td>
<input type="checkbox" name="iq_secret" value="1" <?php echo $chk_secret; ?>>
<label for="iq_secret">비밀글</label>
</td>
</tr>
답변을 작성하시기 전에 로그인 해주세요.