주문서 작성시 필수입력 항목
본문
관리자>기본환경설정>회원가입 에서 전화번호 입력은 보이기만 설정...
휴대폰번호 입력은 보이기 와 필수입력 모두 설정...
이렇게 하여놓었습니다.
그런데 주문서 작성시에는...주문하시는 분의 전화번호 입력은 필수라고 하고....
핸드폰 번호 입력은 건너뛰어도 되고..
주문서 작성시 필수입력표시 설정 변경은 어디파일에서 하여야 하나요?
도움 부탁드립니다....
답변 1
소스에서 직접 수정해야 합니다.
/shop/orderform.sub.php 에서 2군데를 수정해야 합니다.
<tr>
<th scope="row"><label for="od_b_tel">전화번호<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="od_b_tel" id="od_b_tel" class="frm_input" maxlength="20"></td>
</tr>
<tr>
<th scope="row"><label for="od_b_hp">핸드폰</label></th>
<td><input type="text" name="od_b_hp" id="od_b_hp" required class="frm_input required" maxlength="20"></td>
</tr>
check_field(f.od_b_tel, "받으시는 분 전화번호를 입력하십시오.");
=> check_field(f.od_b_hp, "받으시는 분 핸드폰번호를 입력하십시오.");
!-->
답변을 작성하시기 전에 로그인 해주세요.