A bit of an ID:10T error here, but I still don’t have the problem solved. Turns out I was using an old version of Dark Maple and once I updated it, the plugin started working.
Only, then I tried to set it for multiple sidebars and now I can’t connect to the blog at all. I’ve emailed my tech support about that issue, but can someone here clarify the directions on how to use multiple sidebars so I don’t mess this up again? I’m not a PHP programmer so this wasn’t immediately clear to me. The directions state:
>Instead of register_sidebar() you should use >register_sidebars(n) where n is the number of sidebars. >Then place the appropriate number in the dynamic_sidebar() >function, starting with 1.
I assume this means that my functions.php file should be this:
<?php
if ( function_exists(‘register_sidebars’) )
register_sidebars(5);
?>
Does this mean that in my sidebar.php it should say this:
?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(5) ) : else : ?>