• When I customised the naked theme from Stalkers that I used to create my page, I deleted the admin-bar that is displayed above the website when you’re logged in. What is the code to display it again and where exactly would I have to put it? Silly question, I know… Thanks anyway!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    Look on your profile page and check the “Show Toolbar when viewing site” checkbox.

    check if <?php wp_head(); ?> is in header.php and <?php wp_footer(); ?> is in footer.php.

    Thread Starter Johnny82

    (@johnny82)

    Thanks! Displaying the bar is enabled on my profile page. I inserted the code bits you have me but it hadn’t got any effect…

    This is my header.php:

    [Code moderated as per the Forum Rules. Please use the pastebin]

    This is my footer.php:

    <div id="footer">
    </div>
    
    </div>
    </body>
    </html>

    Where exactly would I have to put the code? I appreciate your effort! 🙂

    Moderator keesiemeijer

    (@keesiemeijer)

    Try it just before the </body> tag.

    <div id="footer">
    </div>
    
    </div>
    <?php wp_footer(); ?>
    </body>
    </html>

    Thread Starter Johnny82

    (@johnny82)

    Merci beaucoup!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Get back admin-bar that is displayed above the page when logged in’ is closed to new replies.