So I have been trying to get this plugin working right for a few days now, but I cannot figure it out. I have narrowed it down to the register_sidebar section of my themes functions.php file, but I think I just cannot solve for the right coding. Here is how the original is:
if ( function_exists('register_sidebar') ) {
register_sidebar(array('name'=>'Sidebar Left',
'before_widget' => '<ul class="nolist"><li>',
'after_widget' => '</li></ul>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
I have tried changing it to:
if ( function_exists('register_sidebar') ) {
register_sidebar(array('name'=>'Sidebar Left',
'before_widget' => '<div id="%1$s" class="%2$s"><ul class="nolist"><li>',
'after_widget' => '</li></ul>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
as well as
if ( function_exists('register_sidebar') ) {
register_sidebar(array('name'=>'Sidebar Left',
'before_widget' => '<div id="%1$s"><ul class="nolist %2$s"><li>',
'after_widget' => '</li></ul>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
but have not succeeded to get it working yet. It shows the widget in my admin bar, and I can set other widgets inside it, but on the site it just shows the tabbed accordion titles of the widget, but it will not work.