[YC5] [관리자] 쇼핑몰 분류관리에서 모바일 이미지 크기 조절 쉽게하기 > 기술자료 | 해피정닷컴

[YC5] [관리자] 쇼핑몰 분류관리에서 모바일 이미지 크기 조절 쉽게하기 > 기술자료

본문 바로가기

사이트 내 전체검색

[YC5] [관리자] 쇼핑몰 분류관리에서 모바일 이미지 크기 조절 쉽게하기 > 기술자료

영카트 [YC5] [관리자] 쇼핑몰 분류관리에서 모바일 이미지 크기 조절 쉽게하기

페이지 정보


본문

현재 영카트의 모바일 이미지의 폭과 높이를 설정하려면 아래와 같습니다.

관리자 > 분류관리 > 수정하고자하는 분류의 수정 > 값변경 > 저장
...  이렇게 분류를 하나씩 찾아다니면서 수정을 해야합니다.
...  게시판 설정의 전체 분류를 한번에 수정하게 해주는 기능을 없죠

이것을 아래와 같은 모습으로 개선하는 팁입니다.





1-1. 영카트5 / adm / shop_admin / categorylist.php  111~ 112줄

        <th scope="col" id="sct_imgw">이미지 폭</th>
        <th scope="col" id="sct_imgh">이미지 높이</th>

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 변경 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

        <th scope="col" id="sct_imgw">이미지 폭/모바일</th>
        <th scope="col" id="sct_imgh">이미지 높이/모바일</th>



1-2. 영카트5 / adm / shop_admin / categorylist.php  184 ~ 189줄

            <label for="ca_out_width<?php echo $i; ?>" class="sound_only">출력이미지 폭</label>
            <input type="text" name="ca_img_width[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_img_width']); ?>" id="ca_out_width<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>
        </td>
        <td headers="sct_imgh" class="td_output">
            <label for="ca_img_height<?php echo $i; ?>" class="sound_only">출력이미지 높이</label>
            <input type="text" name="ca_img_height[<?php echo $i; ?>]" value="<?php echo $row['ca_img_height']; ?>" id="ca_img_height<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 변경 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

            <label for="ca_out_width<?php echo $i; ?>" class="sound_only">출력이미지 폭</label>
            <input type="text" name="ca_img_width[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_img_width']); ?>" id="ca_out_width<?php echo $i; ?>" required class="required frm_input" size="3" > / <input type="text" name="ca_mobile_img_width[<?php echo $i; ?>]" value="<?php echo get_text($row['ca_mobile_img_width']); ?>" id="ca_mobile_img_width<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>
        </td>
        <td headers="sct_imgh" class="td_output">
            <label for="ca_img_height<?php echo $i; ?>" class="sound_only">출력이미지 높이</label>
            <input type="text" name="ca_img_height[<?php echo $i; ?>]" value="<?php echo $row['ca_img_height']; ?>" id="ca_img_height<?php echo $i; ?>" required class="required frm_input" size="3" > / <input type="text" name="ca_mobile_img_height[<?php echo $i; ?>]" value="<?php echo $row['ca_mobile_img_height']; ?>" id="ca_mobile_img_height<?php echo $i; ?>" required class="required frm_input" size="3" > <span class="sound_only">픽셀</span>


2. 영카트5 / adm / shop_admin / categorylistupdate.php  34줄

                    ca_stock_qty        = '{$_POST['ca_stock_qty'][$i]}'

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 변경 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

                    ca_stock_qty        = '{$_POST['ca_stock_qty'][$i]}', ca_mobile_img_width = '{$_POST['ca_mobile_img_width'][$i]}', ca_mobile_img_height= '{$_POST['ca_mobile_img_height'][$i]}'

댓글목록

등록된 댓글이 없습니다.


Total 44건 1 페이지
  • RSS
기술자료 목록
44
그누보드   4457  2023-02-03 16:25  
43
전자결제   4733  2022-07-11 15:56 ~ 2022-07-11 15:56  
42
XpressEngine   4971  2021-08-18 19:11  
41
그누보드   7183  2021-02-08 14:43 ~ 2021-02-08 16:31  
40
영카트   5503  2020-03-09 18:02  
39
그누보드   6940  2020-01-08 16:03 ~ 2022-05-24 10:48  
38
그누보드   6753  2019-12-31 06:11 ~ 2021-11-11 11:37  
37
영카트   7931  2019-09-27 09:25  
36
그누보드   6965  2019-07-18 08:01 ~ 2019-07-18 08:44  
35
그누보드   9126  2018-05-28 13:20 ~ 2018-05-28 21:58  
34
그누보드   10017  2018-04-24 03:11 ~ 2018-04-24 04:42  
33
영카트   9314  2018-04-12 19:29  
32
그누보드   9243  2018-01-11 17:54 ~ 2018-01-18 09:29  
31
그누보드   9752  2018-01-06 03:14 ~ 2020-02-12 04:29  
30
그누보드   11206  2017-09-26 11:09 ~ 2018-08-17 21:12  
29
테크노트   11638  2017-06-28 15:53  
28
그누보드   13259  2016-07-26 17:10 ~ 2020-09-26 09:26  
27
WindowsServer   12893  2016-02-03 21:48  
열람
영카트   17931  2014-09-05 18:18  
25
그누보드   68683  2014-08-20 11:50 ~ 2022-11-22 16:25  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.