除了上傳個人圖像外,「自我介紹」那個區塊一定要輸入內容才可以,這樣才會在模板上顯示出個人圖像。
若是不想輸入自我介紹,只想出現個人圖像,那就必須自己修改模板了
在你的側邊欄的模板檔案(可能是panel、footer或links.template)其中一段
{if $blogOwner->hasPicture() && $AboutMyself}
<h2>{$locale->tr("about_myself")}</h2>
<div id="AboutMyself">
{assign var=picture value=$blogOwner->getPicture()}
<img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
<p>{$AboutMyself}</p>
<div class="clearer"> </div>
</div>
{/if}
把上面紅色的部份拿掉就可以了。