Hello,
I also have difficulties using the plugin on a theme that I currently develop. None of the settings I choose work. Can you please advice how to make the theme compatible with it ?
In sidebar.php I have this:
<div id="sidebar">
<?php dynamic_sidebar(); ?>
</div>
And then I register a default sidebar like this:
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'Default sidebar',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
What am I missing ?