Hi.
I have installed wp-polls too. I am using Atahualpa 3.33 with WP 2.7. Installation is ok. The Polls widget is correctly displayed in the "right sidebar" list under Admin-Widgets menu. But no polls appears on the right sidebar, although i have inserted the code
<?php if (function_exists('vote_poll') && !in_pollarchive()): ?>
<li>
<h2>Polls</h2>
<ul>
<li><?php get_poll();?></li>
</ul>
<?php display_polls_archive_link(); ?>
</li>
<?php endif; ?>
into the footer.php file here:
<!-- Right Sidebar -->
<td id="right">
<?php // Widgetize the Right Sidebar
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<?php if (function_exists('vote_poll') && !in_pollarchive()): ?>
<li>
<h2>Polls</h2>
<ul>
<li><?php get_poll();?></li>
</ul>
<?php display_polls_archive_link(); ?>
</li>
<?php endif; ?>
<?php endif; ?>
</td>
<!-- / Right Sidebar -->
Can you explain whai i am doin' wrong? Sorry but i am quite new in WP and in Atahualpa...
Staging website is
http://www.bmotta.net/cartalibera
Thanks
Bruno