모바일 상품상세 사용후기, 상품문의 갯수가 노출되지 않습니다.ㅠ 채택완료
PC화면에서는 사용후기(0), 상품문의(0) 노출되는데
Mobile화면에서는 REVIEW와 Q&A 옆에 게시물 갯수가 노출되지 않습니다.
1. mobile/shop/iteminfo.php 파일에 아래 사용후기, 상품문의 갯수가 노출되는 소스가 들어가 있습니다.
// 관리자가 확인한 사용후기의 개수를 얻음 $sql = " select count(*) as cnt from `{$g5['g5_shop_item_use_table']}` where it_id = '{$it_id}' and is_confirm = '1' "; $row = sql_fetch($sql); $item_use_count = $row['cnt'];
// 상품문의의 개수를 얻음 $sql = " select count(*) as cnt from `{$g5['g5_shop_item_qa_table']}` where it_id = '{$it_id}' "; $row = sql_fetch($sql); $item_qa_count = $row['cnt'];
function pg_anchor($info) { global $default; global $it_id, $item_use_count, $item_qa_count, $item_relation_count;
$href = G5_SHOP_URL.'/iteminfo.php?it_id='.$it_id; ?>
2. mobile_shop.css 파일에 관련 css가 빠져있어 추가했습니다.
.sanchor li a .item_qa_count,.sanchor li a .item_use_count{display:inline-block;background:#aaa;padding:0 5px;line-height:23px;border-radius:15px;color:#fff;min-width:23px;font-size:12px} .sanchor li .sanchor_on .item_qa_count,.sanchor li .sanchor_on .item_use_count{background:#444}
어느 부분을 수정해야 모바일에서도 사용후기, 상품문의 갯수가 노출 될까요?
고수님들~ 도와주세요^^
답변 1개
답변을 작성하려면 로그인이 필요합니다.
로그인
감사합니다^^ 대단하세요~