(신) 나리야 오늘본것, 장바구니 개수 버그 수정
작성자 정보
- 나리야 작성
- 작성일
컨텐츠 정보
- 336 조회
-
목록
본문
안녕하세요.
우측 사이드에 나오는 오늘본상품과, 장바구니의 개수가 서로 바뀌어 잘못된 개수가 노출되고 있습니다..
파일 : layoutbasichead.php
기존 :
if(IS_SHOP) {
$member['todayview_cnt'] = get_boxcart_datas_count();
$member['cart_cnt'] = get_view_today_items_count();
$member['wishlist_cnt'] = get_wishlist_datas_count();
}
수정 :
if(IS_SHOP) {
$member['todayview_cnt'] = get_view_today_items_count();
$member['cart_cnt'] = get_boxcart_datas_count();
$member['wishlist_cnt'] = get_wishlist_datas_count();
}
참고하세요. :)
관련자료
-
링크
댓글 0
등록된 댓글이 없습니다.