'opage_insert.html'에 해당되는 글 1건
XE(XpressEngine) Core Ver. 1.4.3.1 외부페이지 모듈에서
모바일페이지가 정상 동작하지 않는 경우가 있는데 모바일뷰 설정
부분이 누락되어 나타나는 현상인 듯 싶습니다.
(모바일 레이아웃에서 전체적용 시켰을 경우엔 적용됩니다.)
1.4.3.1 버전의 외부페이지 모듈을 확인해보면 모바일 뷰 옵션 부분이 빠져있습니다.
이 부분의 소스를 /modules/opage/tpl/opage_insert.html 파일에 추가해서
적용하면 외부페이지가 정상 동작하더군요.
코어 이슈에도 동일한 문제가 올라온 것으로 보아 다음 버전에서 수정될거라 생각됩니다.
<tr>
<th scope="row"><div>{$lang->mobile_view}</div></th>
<td>
<input type="checkbox" name="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> />
<p>{$lang->about_mobile_view}</p>
</td>
</tr>
<th scope="row"><div>{$lang->mobile_view}</div></th>
<td>
<input type="checkbox" name="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> />
<p>{$lang->about_mobile_view}</p>
</td>
</tr>






Recent Comment