• Hi, I am using WordPress 3.0 with default theme. I have a problem with sidebar. I want to apply Nextgen Slideshow widget on it and it doesn`t work. I have another sidebar made dynamic on another page and it works fine. I used same code line to call a sidebar on my home page except of the sidebar name and it doesn′t work. Is there something that I am not aware of. If someone would like to help me, I can send complete theme I am working on.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • What’s the website? and what is the code you used to call the sidebar?

    Thread Starter sasa2209

    (@sasa2209)

    Here is the code:
    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(sidebar_onama) ) : ?>.

    You need to register the custom sidebar in the functions.php file as well.

    if ( function_exists('register_sidebar') )
    register_sidebar(array(
    'name' => 'sidebar_onama',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h2>',
    'after_title' => '</h2>',
    ));
    Thread Starter sasa2209

    (@sasa2209)

    Still not working.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘dynamic sidebar’ is closed to new replies.