채택완료

메인 이미지를 두번째 이미지로 쓰고 싶습니다.

 

비율 때문에 이미지1번은 상품상세페이지에 나오고 있고

2번째 이미지는 메인과 상품 리스트 페이지에 나오고 싶습니다.

main.10.skin

list.10.skin

위 두개를 수정해야 할것같은대 방법을 알려주시면 감사하겠습니다. 

Copy
<!-- 상품진열 10 시작 { -->for ($i=1; $row=sql_fetch_array($result); $i++) {    if ($this->list_mod >= 2) { // 1줄 이미지 : 2개 이상        if ($i%$this->list_mod == 0) $sct_last = ' sct_last'; // 줄 마지막        else if ($i%$this->list_mod == 1) $sct_last = ' sct_clear'; // 줄 첫번째        else $sct_last = '';    } else { // 1줄 이미지 : 1개        $sct_last = ' sct_clear';    }    if ($i == 1) {        if ($this->css) {            echo "<ul class=\"{$this->css}\">\n";        } else {            echo "<ul class=\"sct sct_10\">\n";        }    }    echo "<li class=\"sct_li{$sct_last}\" style=\"width:{$this->img_width}px\">\n";    if ($this->href) {        echo "<div class=\"sct_img\"><a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a\">\n";    }    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->href) {        echo "</a></div>\n";    }    if ($this->view_it_icon) {        echo "<div class=\"sct_icon\">".item_icon($row)."</div>\n";    }    if ($this->view_it_id) {        echo "<div class=\"sct_id\">&lt;".stripslashes($row['it_id'])."&gt;</div>\n";    }    if ($this->href) {        echo "<div class=\"sct_txt\"><a href=\"{$this->href}{$row['it_id']}\" class=\"sct_a\">\n";    }    if ($this->view_it_name) {        echo stripslashes($row['it_name'])."\n";    }    if ($this->href) {        echo "</a></div>\n";    }    if ($this->view_it_basic && $row['it_basic']) {        echo "<div class=\"sct_basic\">".stripslashes($row['it_basic'])."</div>\n";    }    if ($this->view_it_cust_price || $this->view_it_price) {        echo "<div class=\"sct_cost\">\n";        if ($this->view_it_cust_price && $row['it_cust_price']) {            echo "<strike>".display_price($row['it_cust_price'])."</strike>\n";        }        if ($this->view_it_price) {            echo display_price(get_price($row), $row['it_tel_inq'])."\n";        }        echo "</div>\n";    }    if ($this->view_sns) {        $sns_top = $this->img_height + 10;        $sns_url  = G5_SHOP_URL.'/item.php?it_id='.$row['it_id'];        $sns_title = get_text($row['it_name']).' | '.get_text($config['cf_title']);        echo "<div class=\"sct_sns\" style=\"top:{$sns_top}px\">";        echo get_sns_share_link('facebook', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_fb_s.png');        echo get_sns_share_link('twitter', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_twt_s.png');        echo get_sns_share_link('googleplus', $sns_url, $sns_title, G5_SHOP_SKIN_URL.'/img/sns_goo_s.png');        echo "</div>\n";    }    echo "</li>\n";}if ($i > 1) echo "</ul>\n";if($i == 1) echo "<p class=\"sct_noitem\">등록된 상품이 없습니다.</p>\n";?><!-- } 상품진열 10 끝 -->​

 

 

 

3339100b0c8386a9570f5863c069f2b1_1440053777_4057.jpg

 

|

답변 2개

채택된 답변
+20 포인트

/lib/shop.lib.php 에서 get_it_image() 함수내의 아래부분 수정해주세요.

빨간색 부분만 추가해주시면 됩니다. 

 

    for($i=1;$i<=10; $i++) {
        $file = G5_DATA_PATH.'/item/'.$row['it_img'.$i];
        if(is_file($file) && $row['it_img'.$i]) {
            $size = @getimagesize($file);
            if($size[2] < 1 || $size[2] > 3)
                continue;

            $filename = basename($file);
            $filepath = dirname($file);
            $img_width = $size[0];
            $img_height = $size[1];

            if($i == 2) break;
        }
    }
 

답변을 작성하려면 로그인이 필요합니다.