묻고답하기
게시판 서명출력하는 곳에 회원가입확장변수를 사용하려면?
2010.02.12 02:47
modules/board/skins/xe_board/view_document.html
파일입니다.
작성된 게시물을 볼때 뷰페이지인데요
서명/프로필 이미지 출력이 있습니다.
회원관리 -> 가입폼관리에 peohistory를 생성했습니다.
서명/프로필이 출력되는곳에 이 peohistory변수를 출력해주고 싶습니다.
어떻게 추가를 해주면 가능할지요?
<!-- 서명 / 프로필 이미지 출력 -->
<!--@if($module_info->display_sign != 'N' && ($oDocument->getProfileImage() || $oDocument->getSignature()))-->
<div class="memberSignature">
<!--@if($oDocument->getProfileImage())-->
<div class="profile"><img src="{$oDocument->getProfileImage()}" alt="profile" /></div>
<!--@end-->
<!--@if($oDocument->getSignature())-->
<div class="signature">{$oDocument->getSignature()}</div>
<!--@end-->
<div class="clear"></div>
</div>