如何在magento页面中添加民意调查

时间:2012-10-26 05:12:58

标签: php magento

如何在MAGENTO

的页面中添加民意调查?
  

我尝试使用此

 <div class="left_pan">
       <?php echo $this->getChildHtml('left') ?>
       <?php echo $this->getChildHtml('sidebar') ?>
</div>

但没有工作 请有人帮帮我

2 个答案:

答案 0 :(得分:2)

您需要编辑app / design / frontend / default / default / layout / poll.xml

    <reference name="right">
        <block type="poll/activePoll" name="right.poll">
            <action method="setPollTemplate"><template>poll/active.phtml</template><type>poll</type></action>
            <action method="setPollTemplate"><template>poll/result.phtml</template><type>results</type></action>
        </block>
    </reference>

根据您的要求更改referance名称。 希望这会有所帮助..

答案 1 :(得分:1)

查看本教程Magento poll wiki tutorial

还要检查主题布局文件中的“poll.xml”。