2010-02-07 138 views
0

我有這部分的我的佈局文件中的一個:Magento的 - 添加到佈局

<blog_post_view> 
    <reference name="content"> 
     <block type="blog/post" name="post" template="aw_blog/post.phtml" /> 
     <block type="socialbookmarking/bookmarks" name="bookmarks" template="bookmarks/bookmarks.phtml"/> 
    </reference> 
</blog_post_view> 

這第一塊顯示柱和第二塊顯示了一些社會書籤的圖標。問題是顯示帖子的部分還顯示'添加評論'部分。我想在帖子和評論之間添加社交圖標。

我該怎麼做? IE瀏覽器。在Post塊的中間添加Social塊?

謝謝!

回答

0

將其更改爲:

<blog_post_view> 
    <reference name="content"> 
     <block type="blog/post" name="post" template="aw_blog/post.phtml"> 
      <block type="socialbookmarking/bookmarks" name="bookmarks" template="bookmarks/bookmarks.phtml"/> 
     </block> 
    </reference> 
</blog_post_view> 

然後文章範本(aw_blog/post.phtml)把下面的你想要的書籤,東西里面出現:

<?php echo $this->getChildHtml('bookmarks'); ?>