Viewing 2 replies - 1 through 2 (of 2 total)
  • Usually to the right of the widgets is a sidebar of ‘registered sidebars’ which are available to use widgets. (I’m not sure if you’ve done this since that’s only part of a screenshot) If you haven’t already done so, add code similar to this:

    <?php
    if ( function_exists('register_sidebar') )
    register_sidebar(array(
    'name' => 'Footer',
    'before_widget' => '<div id="%1$s" class="widget">',
    'after_widget' => '</div>',
    'before_title' => '<h2>',
    'after_title' => '</h2>',
    ));
    ?>

    into your functions.php. Read more here https://codex.www.ads-software.com/Function_Reference/register_sidebar

    Thread Starter captjon

    (@captjon)

    Puts my site into a error mode.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar Not Showing Up, Widgets are Locked’ is closed to new replies.