0

如何将民意调查添加到页面中MAGENTO

我正在尝试使用这个

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

但没有工作任何人请帮助我

4

2 回答 2

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>

根据您的要求更改参考名称。希望这可以帮助..

于 2012-10-26T06:11:43.417 回答
1

查看本教程Magento poll wiki 教程

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

于 2012-10-26T05:21:38.013 回答