반응형
고모몰 모바일에 상품리스트 보여지는 부분은 리스트형 겔러리형 두가기로 되어있다.
여기에 영향을 주는 부분은
/shop/conf|config.mobileShop.category.php
<?
$cfgMobileDispCategory = array(
'disp_goods_count' => '10',
)
;?>
/m2/proc|mAjaxAction.php
if($view_type == 'gallery') {
$number = 9;
}
/shop/data/skin_mobileV2/light/goods/list|tpl_02.htm
등이 있는대 이것을 짝수로 나오게 하기위해 수정을 하던중 계속 홀수개 즉 9개로 만 나와서 한참을 찾다보니
/shop/lib|Mobile2GoodsDisplay.class.php
if($view_type == 'gallery') {
$number = $cfgMobileDispCategory['disp_goods_count'] - ($cfgMobileDispCategory['disp_goods_count'] % 3);
}
이부분에서 3의배수로 맞추고 있었다.
이 부분을 짝수개로 하려고 했으니
$number = $cfgMobileDispCategory['disp_goods_count'] - ($cfgMobileDispCategory['disp_goods_count'] % 2);
이렇게 수정해서 해결해두었다.
반응형
'Story > php' 카테고리의 다른 글
Warning: Unexpected character in input: '\' (ASCII=92) state=1 오류문제 (0) | 2016.09.29 |
---|---|
php등 프로그램으로 엑셀 다운로드시 열리지 않을때 (table 코딩으로 만든것) (0) | 2016.08.11 |
고도몰 모바일에서 오늘본상품 보여주기 (0) | 2016.07.05 |
고도몰에서 추가페이지를 iframe 로 사용시 주의사항 (0) | 2016.04.14 |
detect-mobile-devices 모바일 체크 (0) | 2015.09.21 |