웹마스터 팁
모바일EX 사용시, 모바일 레벨아이콘 출력하기.
2014.03.29 06:01
원글 : http://www.xpressengine.com/tip/22279536
이 팁을 99% 참조했으며, 모바일EX에 적용할때 약간의 변형을 시켰습니다.
제가 적용할때 메모장에 적어둔걸 기반으로 적어나갑니다. :)
팁게시판 처음입니다...^^;; 부족한게 있으면 댓글로 알려주세요...
주석은 gunmania 님과 수정한 부분을 적어봤습니다.
경로 : modules - board - m.skins - mex_default
1. _list.html 이 아니라 _style_list.html line19
<strong>{$document->getNickName()}</strong> </span> 을
<span class="member_{$document->get('member_srl')}"><strong>{$document->getNickName()}</strong> </span></span>
로
// gunmania 님이 </span> 태그를 빠트리신 모양입니다.
// 또, class="auth" 를 지우면 글자가 bold처리되버려서 그냥 옆에다가 썼습니다.
// style="" 에서 display:block; 없애야 두줄로 안나오고, 필요없어 보여서 통째로 지웠습니다.
2. comment.html
<em>{$comment->getNickName()}</em> 을
<span class="member_{$comment->get('member_srl')}"></span><em>{$comment->getNickName()}</em>
으로 수정
// style="" 부분을 삭제했으며, <strong> 처리된게 어울리는거 같지 않아 <em> 처리로 바꿨습니다.
3. read.html 이 아니라 read_document.html
<span class="ex">{$oDocument->getNickName()} 을
<span class="ex"><span class="member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</span>
으로 수정.
이렇게 처리하고 닉네임을 눌러보면 css가 적용이 안되어 이상하게 나옵니다.
이 문제는 /common//css의 xe.css, xe.min.css의 /* Popup Menu Area */ 부분에 해당하는 것들을 mobile.css, mobile.min.css에 넣어주시면 PC화면처럼 팝업 메뉴가 출력됩니다.
css에서 popup 내용을 복붙하기만 하면 되니까, 또 길어서 그냥 생략합니다.
댓글 11
-
qwms
2014.03.29 06:03
-
Paul
2014.03.29 09:24
모바일EX는 XE 1.7.4 버전 이상에서는 사용할 수 없다는게 아쉬운 점입니다. -
qwms
2014.03.29 09:32
아... 그런가요..
1.7.3 에서 업글 안하는중인데
절대 하면 안되겠군요..
-
sejin7940
2014.04.01 10:47
MobileEx 의 XE 1.7.4 버그는
http://www.xpressengine.com/tip/22656180 이 글에 설명된 것과 동일한 이유때문입니다
함수명 5개가 문제가 될거예요. 하필 그 함수들이 모바일 파일업로드/출력 쪽이죠
같은 방식으로 수정하면, 정상작동할겁니다.
-
Paul
2014.04.03 00:37
세진님. 답글 달아주셔서 감사드립니다. 엄... 그런데 xe/modules/mobileex/conf/module.xml 을 오픈해보면 아래와 같은 내용인데요. 흠... proc 다음에 제대로 다 Mobileex 가 있는것 같은데 무엇이 문제인지 잘 모르겠네요.
<?xml version="1.0" encoding="utf-8"?> <module> <grants /> <permissions> <permission action="dispMobileexAdminConfig" target="manager" /> <permission action="dispMobileexAdminModuleList" target="manager" /> <permission action="dispMobileexAdminEachConfig" target="manager" /> <permission action="procMobileexAdminInsertEachConfig" target="manager" /> </permissions> <actions> <action name="MEIS" type="view" standalone="true" /> <action name="mobileFileDelete" type="controller" standalone="true" /> <action name="mobileFileUpload" type="controller" standalone="true" /> <action name="mobileInsertAddFile" type="controller" standalone="true" /> <action name="mobileDeleteAddFile" type="controller" standalone="true" /> <action name="dispMobileexAdminConfig" type="view" admin_index="true" /> <action name="dispMobileexAdminModuleList" type="view" standalone="true" /> <action name="dispMobileexAdminEachConfig" type="view" standalone="true" /> <action name="dispMobileexAdminModuleDelete" type="view" standalone="true" /> <action name="dispMobileexAdminMobileSkinInfo" type="view" standalone="true" /> <action name="procMobileexAdminInsertConfig" type="controller" ruleset="insertConfig" /> <action name="procMobileexAdminInsertEachConfig" type="controller" ruleset="insertEachConfig" /> <action name="procMobileexAdminModuleDelete" type="controller" standalone="true" /> <action name="procMobileexAdminUpdateSkinInfo" type="controller" standalone="true" /> <action name="getMobileexCommentList" type="mobile" /> <action name="getMobileexSubCommentList" type="mobile" /> </actions> </module>
-
sejin7940
2014.04.03 02:26
<action name="mobileFileDelete" type="controller" standalone="true" /><action name="mobileFileUpload" type="controller" standalone="true" />
<action name="mobileInsertAddFile" type="controller" standalone="true" />
<action name="mobileDeleteAddFile" type="controller" standalone="true" />
들이 전부
procMobileexMobileFileUpload 같은 형식으로 바뀌어야해요
고쳐야하는 곳이 제법될겁니다. module.xml / controller 파일 / js 파일들/ 그리고 스킨내부에 관련 파일들을 다 찾아가며 고쳐야할꺼예요 ^^;;
-
Paul
2014.04.03 14:09
후우~!! 그렇군요. 하지만 그렇게해서라도 작동만 된다면 한번 시간될 때 천천히 도전해 봐야겠습니다. 이렇게 시간내서 답변해주셔서 너무너무 감사드립니다. ^^ -
Gunmania
2014.04.03 15:16
통합검색(MEIS)만 빼고 수정된 파일입니다.
-
Paul
2014.04.03 16:11
헉,, 벌써 이렇게 빨리 해주시다니...ㅠ 정말정말 감사드립니다. 그동안 잘 사용하던 MobileEX 를 버전업 후 사용하지 못해서 너무 속상했었는데 세진님하고 gunmania님 덕분에 다시 사용할 수 있게되서 너무 기쁩니다! 다시한번 진심으로 감사드립니다!!!
-
Gunmania
2014.04.03 17:04
사실 저도 그래서 1.7.3.8로 롤백했다가 (여기서 나름대로 Mysqli_innodb Backport 해본다고 시도하다가 안되서 방치하기도...) 모듈 수정하고 1.7.4로 쓰고 있었거든요. 제가 수정해서 사용중인 파일 그대로 올렸습니다 ㄷ
-
Paul
2014.04.04 14:43
감사합니다. 잘 작동합니다. 속이 다 시원하네요. ^^
다시한번 세진님, Gunmania님께 감사드립니다!!!
적용된 예시는
http://ssulsa.com/xe/?m=1
를 보시면 됩니다.