묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 분류를 리스트에 전체경로가 나오게 가능할까요?
2017.03.28 10:07
안녕하세요!
혼자서 해보려고 끙끙거리다가 너무 안되서 질문 좀 남깁니다.
스케치북에서 분류(카테고리)를 1차/2차/3차까지 나눴습니다.
그런데 확인해보니 마지막 3차 분류만 나오더군요.
그래서 검색해서 아래의 소스를 사용해봤더니
이번에는 1차는 안나오고 2차,3차만 분류가 나오네요.
혹시 3차도 나오게끔 가능할까요?
ex) 1차(대분류)-2차(중분류)-3차(소분류) 모두표기
스케치북은 2차까지만 지원한다는 얘기도 있고,...
혹시 아시는분 있으면 조언좀 주세요!
모두 오늘 하루도 좋은 하루 보내세요~~
[분류를 2차까지만 지원하는 소스]
<!--@if($category_list[$document->get('category_srl')]->parent_srl > 0)--><!--// 2차 카테고리 일때 -->
{$category_list[$category_list[$document->get('category_srl')]->parent_srl]->title} >
<!--@else--><!--// 1차 카테고리 일때 -->
<!--@end-->
{$category_list[$document->get('category_srl')]->title}
타이틀
1차: $category_list[$document->get('category_srl')]->title
2차: $category_list[$category_list[$document->get('category_srl')]->parent_srl]->title
3차: $category_list[$category_list[$category_list[$document->get('category_srl')]->parnt_srl]->parnt_srl]->title
조건
1차: if($document->get('category_srl') > 0)
2차: if($category_list[$document->get('category_srl')]->parent_srl > 0)
3차: if($category_list[$category_list[$document->get('category_srl')]->parnt_srl]->parnt_srl > 0)
대충 이런 구조가 되지 않을까 싶네요.