본문 바로가기
Programming/WEB Hosting

[XE] xe_official_v2 xe공식레이아웃v2 관리자메뉴 나타나게 하기.

by 도파공 2010. 5. 1.
728x90
반응형

LaTex를 쓰기 위해 설정한 것 때문에 $표시가 나타나면 수식으로 자동인식이 되고 있습니다. 하단의 링크를 참고하시면 제대루 보실 수 있어요. ㅠㅠ

 

 일단 관리자 메뉴에 들어가서 레이아웃 편집으로 들어갑니다.

v2에 관리자 메뉴로 들어가는 버튼이 없어서 못들어가시는 분들도 계실텐데

홈페이지주소/xe/?module=admin 으로 들어가시면 됩니다.

 

편집에서 아래부분을 찾아줍니다.

<!-- memberProfile -->
                    <div id="memberProfile" class="memberProfile">
                    <!-- class="memberProfile" | class="memberProfile active" -->
                        <button type="button" class="close" onclick="jQuery('#memberProfile').toggleClass('active');" accesskey="X"><span>Close profile layer</span></button>
                        <h2 class="authorName">{$logged_info->nick_name}</h2>
                        <ul>
                            <!--@foreach($logged_info->menu_list as $key => $val)-->
                            <li><a href="{getUrl('act',$key,'member_srl','')}">{Context::getLang($val)}</a></li>
                            <!--@end-->
                        </ul>
                        <button type="button" class="close" onclick="jQuery('#memberProfile').toggleClass('active');" accesskey="X"><span>Close profile layer</span></button>
                    </div>
                    <!-- /memberProfile -->

 

찾으셨으면 아래것으로 싸~악 교체 해줍니다.

<!-- memberProfile -->
                    <div id="memberProfile" class="memberProfile">
                    <!-- class="memberProfile" | class="memberProfile active" -->
                        <button type="button" class="close" onclick="jQuery('#memberProfile').toggleClass('active');" accesskey="X"><span>Close profile layer</span></button>
                        <h2 class="authorName">{$logged_info->nick_name}</h2>
                        <ul>
                            <!--@foreach($logged_info->menu_list as $key => $val)-->
                            <li><a href="{getUrl('act',$key,'member_srl','')}">{Context::getLang($val)}</a></li>
                            <!--@end-->
<!--@if($logged_info->is_admin=="Y")-->
                    <li><a href="{getUrl('','module','admin')}" onclick="window.open(this.href);return false;">{$lang->cmd_management}</a></li>
                    <!--@if($layout_info->layout_srl)-->
                    <li><a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_layout_management}</a> /  <a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_edit}</a></li>
                    <!--@end--><!--@end-->
                        </ul>
                        <button type="button" class="close" onclick="jQuery('#memberProfile').toggleClass('active');" accesskey="X"><span>Close profile layer</span></button>
                    </div>
                    <!-- /memberProfile -->

 

레이아웃 설정/편집 버튼을 지우실려면

                    <!--@if($layout_info->layout_srl)-->
                    <li><a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_layout_management}</a> /  <a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">{$lang->cmd_edit}</a></li>
                    <!--@end-->

이부분만 지워주시면 됩니다.

 

출처 : http://www.xpressengine.com/18175302

728x90
반응형

댓글