배송비 결제 부분 주석처리 방법 질문드립니다
본문
배송비결제 주문시 결제 부분을 않보이게 하기 위한 주석처리를 어느 부분에 해야 하나요?
/www/theme/ey54_shop_001/skin/shop/basic/item.form.skin.php 파일에서 아래 부분에서 <!-- 내용 --> 주석처리 해봐도 반응이 없네요 ^^;;
</td>
</tr>
<?php } ?>
<?php
$ct_send_cost_label = '배송비결제';
if($it['it_sc_type'] == 1)
$sc_method = '무료배송';
else {
if($it['it_sc_method'] == 1)
$sc_method = '수령후 지불';
else if($it['it_sc_method'] == 2) {
$ct_send_cost_label = '<label for="ct_send_cost">배송비결제</label>';
$sc_method = '<select name="ct_send_cost" id="ct_send_cost">
<option value="0">주문시 결제</option>
<option value="1">수령후 지불</option>
</select>';
}
else
$sc_method = '주문시 결제';
}
?>
<tr>
<th><?php echo $ct_send_cost_label; ?></th>
<td><?php echo $sc_method; ?></td>
</tr>
<?php if($it['it_buy_min_qty']) { ?>
<tr>
답변 2
주석처리 /**/ 이렇게 해야될거에요 아니면 // 이렇게요
php에서는 <!-- --> 이런 주석 안되요
이렇게 감싸면 된다구요
해본거 맞아요?
안될일이 없는데..
끝까지 해보시고 도저히 안되겠으면 질문을 남겨주세요..
<?php
/* $ct_send_cost_label = '배송비결제';
if($it['it_sc_type'] == 1)
$sc_method = '무료배송';
else {
if($it['it_sc_method'] == 1)
$sc_method = '수령후 지불';
else if($it['it_sc_method'] == 2) {
$ct_send_cost_label = '<label for="ct_send_cost">배송비결제</label>';
$sc_method = '<select name="ct_send_cost" id="ct_send_cost">
<option value="0">주문시 결제</option>
<option value="1">수령후 지불</option>
</select>';
}
else
$sc_method = '주문시 결제';
}*/
?>
<!--<tr>
<th><?php /*echo $ct_send_cost_label; */?></th>
<td><?php /*echo $sc_method; */?></td>
</tr>-->