영카트 주문서 작성시 주소 부분 빼는 법
본문
영카트 주문서 작성시 주소 부분을 빼거나 입력창으로 변경 하고 싶은데 어떻게 변경을 하면 될까요?
<label for="od_zip" class="sound_only"><?php echo _t('우편번호'); ?><strong class="sound_only"> <?php echo _t('필수'); ?></strong></label>
<input type="text" name="od_zip" value="<?php echo $member['mb_zip1'].$member['mb_zip2']; ?>" id="od_zip" required class="frm_input required" size="8" maxlength="6" placeholder="<?php echo _t('우편번호'); ?>">
<button type="button" class="btn_address" onclick="win_zip('forderform', 'od_zip', 'od_addr1', 'od_addr2', 'od_addr3', 'od_addr_jibeon');"><?php echo _t('주소 검색'); ?></button><br>
<input type="text" name="od_addr1" value="<?php echo get_text($member['mb_addr1']) ?>" id="od_addr1" required class="frm_input frm_address required" size="60" placeholder="<?php echo _t('기본주소'); ?>">
<label for="od_addr1" class="sound_only"><?php echo _t('기본주소'); ?><strong class="sound_only"> <?php echo _t('필수'); ?></strong></label><br>
<input type="text" name="od_addr2" value="<?php echo get_text($member['mb_addr2']) ?>" id="od_addr2" class="frm_input frm_address" size="60" placeholder="<?php echo _t('상세주소'); ?>">
<label for="od_addr2" class="sound_only"><?php echo _t('상세주소'); ?></label>
<br>
<input type="text" name="od_addr3" value="<?php echo get_text($member['mb_addr3']) ?>" id="od_addr3" class="frm_input frm_address" size="60" readonly placeholder="<?php echo _t('참고항목'); ?>">
<label for="od_addr3" class="sound_only"><?php echo _t('참고항목'); ?></label><br>
<input type="hidden" name="od_addr_jibeon" value="<?php echo get_text($member['mb_addr_jibeon']); ?>">
답변 1
삭제하려면 당연히 소스 전체를 주석하거나 삭제하면되구요
입력창으로 바꾸려면 주소입력 input 을 하나만 남겨놓으면 되겠죠??
<input type="text" name="od_addr1" value="<?php echo get_text($member['mb_addr1']) ?>" id="od_addr1" required class="frm_input frm_address required" size="60" placeholder="<?php echo _t('기본주소'); ?>">