댓글 프로필 이미지 사이즈 줄이기관리자 기본설정에서 조정 가능하나 서명쪽과 댓글쪽의 프로필 크기를 따로 설정할 수 있는 팁이다.
수정할 파일
skin.xml, comment.htmlView Source
[skin.xml] 아래 코드를 삽입.
<var name="profile_image_width" type="text" default="100">
<title xml:lang="ko">프로필 이미지 가로크기</title>
<title xml:lang="jp">サムネールの横サイズ</title>
<title xml:lang="zh-CN">缩略图宽度</title>
<title xml:lang="en">Width of Profile Image</title>
<title xml:lang="vi">Chiều rộng hình nhỏ</title>
<title xml:lang="zh-TW">縮圖寬度</title>
<description xml:lang="ko">프로필 이미지의 가로 크기를 지정할 수 있습니다. (기본 100px)</description>
<description xml:lang="jp">サムネールの横サイズを指定します(デフォルト 100px)。</description>
<description xml:lang="zh-CN">可以指定缩略图宽度(默认为 100px)。</description>
<description xml:lang="en">Set the width of Profile Image.</description>
<description xml:lang="vi">Set the width of Profile Image.</description>
<description xml:lang="zh-TW">可指定縮圖寬度(預設是 100px)。</description>
</var>
<var name="profile_image_height" type="text" default="100">
<title xml:lang="ko">프로필 이미지 세로크기</title>
<title xml:lang="jp">サムネールの縦サイズ</title>
<title xml:lang="zh-CN">缩略图高度</title>
<title xml:lang="en">Height of Profile Image</title>
<title xml:lang="vi">Chiều cao hình nhỏ</title>
<title xml:lang="zh-TW">縮圖高度</title>
<description xml:lang="ko">프로필 이미지의 세로 크기를 지정할 수 있습니다. (기본 100px)</description>
<description xml:lang="jp">サムネールの縦サイズを指定します(デフォルト 100px)。</description>
<description xml:lang="zh-CN">可以指定缩略图高度(默认为 100px)。</description>
<description xml:lang="en">Set the height of Profile Image.</description>
<description xml:lang="vi">Set the height of Profile Image.</description>
<description xml:lang="zh-TW">可指定縮圖高度(預設是 100px)。</description>
</var>
[comment.html] 빨간색 코드를 삽입.
<img src="{$comment->getProfileImage()}" width="{($module_info->profile_image_width)}" height="{($module_info->profile_image_height)}" alt="profile" class="profile" />