상품 유형 어떻게 추가시키나요..
본문
itemform, itemformupdate, configformupdate 등등..
전부 새로 추가할 6의 관한 값을 추가해도..
상품추가 및 수정에서 6의 관한 라디오체크는 되는데..
수정 확인을 누르면 체크가 풀리고..
상품 추가 및 수정이 안되는 병크가 터져서.. 데이터 베이스를 백업시켰어요.. 엉엉
상품유형 추가하는 법좀 알려주세요 ㅠㅠ
답변 2
DB에
ALTER TABLE `g5_shop_item` ADD `it_type6` TINYINT NOT NULL AFTER `it_type5` ;
실행해 주시구요.
adm/shop_admin/itemform.php 에
<input type="checkbox" name="it_type5" value="1" <?php echo ($it['it_type5'] ? "checked" : ""); ?> id="it_type5">
<label for="it_type5">할인 <img src="<?php echo G5_SHOP_URL; ?>/img/icon_discount.gif" alt=""></label>
아래 ....
<input type="checkbox" name="it_type5" value="1" <?php echo ($it['it_type5'] ? "checked" : ""); ?> id="it_type5">
<label for="it_type5">할인 <img src="<?php echo G5_SHOP_URL; ?>/img/icon_discount.gif" alt=""></label>
<input type="checkbox" name="it_type6" value="1" <?php echo ($it['it_type6'] ? "checked" : ""); ?> id="it_type6">
<label for="it_type6">할인 <img src="<?php echo G5_SHOP_URL; ?>/img/icon_discount.gif" alt=""></label>
식으로 추가해 주시구요. 이미지는 적절한걸로 변경 후 URL 수정해 주시구요.
같은 폴더의 itemformupdate.php 에 ....
it_type5 = '$it_type5',
아래 ....
it_type5 = '$it_type5',
it_type6 = '$it_type6',
식으로 추가해 줍니다.
lib/shop.lib.php 에 ....
if (is_soldout($it['it_id']) || $it['it_type1'] || $it['it_type2'] || $it['it_type3'] || $it['it_type4'] || $it['it_type5'] || $row['cnt']) $is_icon = 1;
else $is_icon = 0;
$icon = '';
if ($is_icon) $icon .= '<span class="sit_icon">';
// 품절
if (is_soldout($it['it_id']))
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_soldout.gif" alt="품절">';
if ($it['it_type1'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_hit.gif" alt="히트상품">';
if ($it['it_type2'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_rec.gif" alt="추천상품">';
if ($it['it_type3'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_new.gif" alt="최신상품">';
if ($it['it_type4'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_best.gif" alt="인기상품">';
if ($it['it_type5'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_discount.gif" alt="할인상품">';
를 ....
if (is_soldout($it['it_id']) || $it['it_type1'] || $it['it_type2'] || $it['it_type3'] || $it['it_type4'] || $it['it_type5'] || $it['it_type6'] || $row['cnt']) $is_icon = 1;
else $is_icon = 0;
$icon = '';
if ($is_icon) $icon .= '<span class="sit_icon">';
// 품절
if (is_soldout($it['it_id']))
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_soldout.gif" alt="품절">';
if ($it['it_type1'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_hit.gif" alt="히트상품">';
if ($it['it_type2'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_rec.gif" alt="추천상품">';
if ($it['it_type3'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_new.gif" alt="최신상품">';
if ($it['it_type4'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_best.gif" alt="인기상품">';
if ($it['it_type5'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_discount.gif" alt="할인상품">';
if ($it['it_type6'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_discount.gif" alt="할인상품">';
처럼 수정해 줍니다.
이미지 URL 문구는 적절한걸로 수정해 주세요.
!-->!-->!-->!-->!-->!-->
답변을 작성하시기 전에 로그인 해주세요.