Reputation: 539
How can i add polls into a page in MAGENTO
?
i am try to using this
<div class="left_pan">
<?php echo $this->getChildHtml('left') ?>
<?php echo $this->getChildHtml('sidebar') ?>
</div>
but not working anybody help me please
Upvotes: 0
Views: 1669
Reputation: 185
You need to edit 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>
Change referance name as per your requirement. Hope this helps..
Upvotes: 2
Reputation: 1746
Check this tutorial Magento poll wiki tutorial
Also check "poll.xml" in your themes layout file.
Upvotes: 1