상품 유형 아이콘 이미지로 변경
영카트 5.3 버전에서 상품 유형 아이콘을 영카트 5.2 버전처럼 다시 이미지로 변경하는 방법입니다.
이미지는 /shop/img 폴더에 있습니다.
수정 파일 : /lib/shop.lib.php
상품 유형 아이콘 출력 함수 변경
// 상품이미지에 유형 아이콘 출력
function item_icon($it)
{
global $g5;
$icon = '<span class="sit_icon">';
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="할인상품">';
// 쿠폰상품
$sql = " select count(*) as cnt
from {$g5['g5_shop_coupon_table']}
where cp_start <= '".G5_TIME_YMD."'
and cp_end >= '".G5_TIME_YMD."'
and (
( cp_method = '0' and cp_target = '{$it['it_id']}' )
OR
( cp_method = '1' and ( cp_target IN ( '{$it['ca_id']}', '{$it['ca_id2']}', '{$it['ca_id3']}' ) ) )
) ";
$row = sql_fetch($sql);
if($row['cnt'])
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_cp.gif" alt="쿠폰상품">';
// 품절
if (is_soldout($it['it_id']))
$icon .= '<img src="'.G5_SHOP_URL.'/img/icon_soldout.gif" alt="품절">';
$icon .= '</span>';
return $icon;
}