상품 메인 추출 이미지와 상품리스트 이미지를 ??
본문
상품 메인 추출 이미지와 상품리스트 이미지를 썸네이이 아닌 원본이미지로 했으면 합니다
공통으로 불러오는 소스가
if ($this->view_it_img) {
echo get_it_image($row['it_id'], $this->img_width, $this->img_height, '', '', stripslashes($row['it_name']))."\n";
}
어떻게 해야 할까요..
알려주시면 감사하겠습니다.
답변 1
이렇게 해서 해결했습니다.
/*원본*/
if ($this->view_it_img) {
echo get_it_image($row['it_id'], $this->img_width, $this->img_height, '', '', stripslashes($row['it_name']))."\n";
}
/*변경*/
if ($this->view_it_img) {
$img_img = G5_DATA_URL.'/item/'.$row['it_img1'];
if ($img_img)
{
echo "<img src='".$img_img."' width='{$this->img_width}px' height='{$this->img_height}px' >";
}
else
{
echo "<img src=".G5_SHOP_URL."/img/no_image.gif width='{$this->img_width}px' height='{$this->img_height}px'>";
}
}
검색을 해보니 답이 있었네요....