문제 : 탭은 나오는데, 내용이 출력되지 않는 문제
분석 : Html 소스 상에는 자료 로드 됨
원인 :
1. div 출력 과정에서 height 값이 default로 0 값이 되는 것 같음, 내용 로드시점과 div 생성시점에서의 문제라고 예상
2. 최신글에 대한 값 $widget_info->newest_documents 이 NULL로 넘어옴 : 쿼리상의 문제
해결 :
1.
widgets/ideationPopular/skins/ideation/css/ideation.css
4번째 라인 수정 : height:400px; 추가
.popularSimple{ position:relative; *zoom:1} =>.popularSimple{ position:relative;height:400px; *zoom:1}
2.
widgets/ideationPopular/queries/getNewestDocuments.xml
10번째 라인 삭제 (board 전용 모듈에 대한 쿼리였음 -> bodex 및 기타 글에 대한 쿼리 안되는 이유)
<condition operation="equal" column="modules.module" default="board" filter="number" />
관련글
http://www.xpressengine.com/19525710
http://www.xpressengine.com/?mid=download&category_srl=18322927&page=2&package_srl=18324332