don't show widget if no active polls
-
Is there a possibility to hide the whole sidebar widget if no active poll is there?
I think it’s not possible with dynamic widgets so I switched to a static entry in my sidebar.php theme file:
<?php if (function_exists('vote_poll') && !in_pollarchive()): ?> <div class="widget widget_polls-widget"> <h3>Polls</h3> <ul> <li><?php get_poll();?></li> </ul> <?php display_polls_archive_link(); ?> </div> <?php endif; ?>
How can I achieve my goal?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘don't show widget if no active polls’ is closed to new replies.