請問相關位置是?
可否再詳細一點
另外一個buggy的問題
我是一個multi-user的社群
如果有兩個user都用這個模板
但是右上方的圖片要不一樣
請問我該怎麼做?
多複製一個buggy模板給別一個user改就好了
這是我的postandcomments.template~看你選擇是否要用~當然也是buggy
{include file="$blogtemplate/header.template"}
<p style="text-align: center">
{if $nextpost == true}
<a href="{$url->postPermalink($nextpost)}" title="Next post: {$nextpost->getTopic()}">«</a> |
{/if}
{if $prevpost == true}
<a href="{$url->postPermalink($prevpost)}" title="Previous post: {$prevpost->getTopic()}">»</a>
{/if}
</p>
{assign var="poster" value=$post->getUserInfo()}
{include file="$blogtemplate/post.template"}
{foreach from=$comments item=comment}
<p class="commentheader">
<img src="{$url->getUrl("/imgs/comment_icon1.gif")}"/> {$comment->getTopic()} <span class="categoryinfo">[<a href="{$url->replyCommentLink($post,$comment)}">{$locale->tr("reply")}</a>]</span>
</p>
<p>
$comment->getText()
</p>
<span class="commentposterinfo">
{assign var="commentDate" value=$comment->getDateObject()}
{$comment->getUsername()} | {$locale->formatDate($commentDate, "%d/%m/%Y, %H:%M")}
</span>
{/foreach}
{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
<h3>{$locale->tr("add_comment")}</h3>
{include file="$blogtemplate/commentform.template"}
{/if}
{include file="$blogtemplate/footer.template"}