반드시 옵션을 입력해야한다는 부분 없애는 건 어떻게 하나요? 채택완료

구매하기 누르면 옵션을 반드시 입력해야 구매하기로 넘어가게 했었는데요
이부분을 없애려면 아래 소스부분에서 수정해야할거 같은데 어떻게 수정해야하나요?
// 보관기간이 지난 상품 삭제 cart_item_clean();
// cart id 설정 set_cart_id($sw_direct);
$s_cart_id = get_session('ss_cart_id'); // 선택필드 초기화 $sql = " update {$g5['g5_shop_cart_table']} set ct_select = '0' where od_id = '$s_cart_id' "; sql_query($sql);
$cart_action_url = G5_SHOP_URL.'/cartupdate.php';
if (G5_IS_MOBILE) { include_once(G5_MSHOP_PATH.'/cart.php'); return; }
// 테마에 cart.php 있으면 include if(defined('G5_THEME_SHOP_PATH')) { $theme_cart_file = G5_THEME_SHOP_PATH.'/cart.php'; if(is_file($theme_cart_file)) { include_once($theme_cart_file); return; unset($theme_cart_file); } }
$g5['title'] = '장바구니'; include_once('./_head.php'); ?>
답변 2개
답변을 작성하려면 로그인이 필요합니다.
로그인