• AngieC

    (@angiec)


    I added code to my sidbar to make a menu show up on my “about” page. Now none of the widgets show up at all. I’m using the Specialist Theme from templatic.com and my website is https://www.chladekwealth.com. What do I need to change in my code?

    Here’s my code for the sidebar…

    `<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘sidebar ‘) ) : else : ?>

    <?php
    $children = wp_list_pages(‘title_li=&child_of=’.$post->ID.’&echo=0′);
    if ($children) { ?>
    <ul>
    <?php echo $children; ?>
    </ul>
    <?php } ?>

    <div id=”sidebar” class=”grid4 fl” >
    <?php dynamic_sidebar(6); ?>

    </div> <!– sidebar #end –>`

Viewing 1 replies (of 1 total)
  • Moderator t-p

    (@t-p)

    Try:

    -deactivating ALL plugins temporarily to narrow down and possibly fix the problem . If the problem goes away, activate them individually to find the culprit?

    -switching to the default theme (Twenty Ten) for a moment by renaming your current theme’s folder in wp-content/themes. The idea is to force WordPress to fall back to the default theme to rule out any theme-specific issue?

Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar Widgets Not Showing Up’ is closed to new replies.