Title: Sidebar problem
Last modified: August 19, 2016

---

# Sidebar problem

 *  [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/)
 * Hi,
 * I have a sidebar issue. The title “Pages” is showing up above my menu and I’ve
   tried to remove it without success.
 * Does anyone know how I might be able to remove this title?
 * Page is here
    [http://puremango.com/delisle-youth/](http://puremango.com/delisle-youth/)
 * Thanks in advance!!!

Viewing 15 replies - 1 through 15 (of 30 total)

1 [2](https://wordpress.org/support/topic/sidebar-problem-16/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/sidebar-problem-16/page/2/?output_format=md)

 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019945)
 * Sorry, Login has also dissapeared…
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019949)
 * Please post the code that lists your pages. It will be in the sidebar.php of 
   your theme and look something like `<?php wp_list_pages('title_li=<h2>Pages</
   h2>' ); ?>`. As for login, you don’t need a link. It’s: [http://puremango.com/delisle-youth/wp-login.php](http://puremango.com/delisle-youth/wp-login.php)
   🙂
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019951)
 * Or if you’re good with code and know what you’re doing, slip this:
 * &title_li=
 * between the ‘ ‘ like this:
 * `<?php wp_list_pages('&title_li=' ); ?>`
 * If there’s anything else there, just put that first so it doesn’t mess up any
   other formatting of the page links 🙂
 *  [MrMarco](https://wordpress.org/support/users/mrmarco/)
 * (@mrmarco)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019952)
 * I can see your admin login page just fine. I just added wp-admin at the end of
   your domain after the /.
 * From the looks of the source, your Pages is a widget. If that’s true you can 
   change it inside the admin section after you login. Click ‘appearance’ then ‘
   widgets’ and you’ll see the widgets you have set up going down the right side
   of the screen. Open the one that say Pages and remove the title from there. That’s
   assuming you still want to show the pages and not the word pages.
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019953)
 * Ooops, it’s a widget indeed. I always forget to look for widgets. Hate widgets,
   heh.
 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019954)
 * Hi,
 * is this it? it looks identicle to what you posted?
 * <?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
 * I do need the login as I will want clients to be able to login… It was there 
   before obviously broke something 🙁
 * Thanks for your feedback…
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019955)
 * Well as MrMarco said, it’s a widget. So just login to your admin and remove the
   title from the pages widget.
 * Then drag over the meta widget and you’ll have your login restored 🙂
 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019956)
 * Ok, so I just removed the “Pages” widget and now the menus and login are back.
 * What i need though is the large titles removed. i just want to ahve a clean menu
   like this:
 * —————–
    Home About Us Service
 * Login
    —————–
 * I dont want the category heading…
 * Thanks
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019957)
 * Click to edit the widgets and remove the titles. Make sure you save after you
   edit.
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019959)
 * *delete*
 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019961)
 * Hi, sorry but I’m not using the widgets?
 * I have all the available widgets on the left side (blue bars) and a message at
   the top right “You are using 0 widgets in the sidebar.”
 * If I “add” say the “Categories” widget and open it there is not title being used
   its blank?
 * Is this what you meant? Sorry for being dumb with this…
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019962)
 * No no your’re not dumb. In your code it states you’re using widgets. Hmmm. Well
   try this for me… replace
 * <?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
 * with
 * <?php wp_list_pages(‘&title_li=’ ); ?>
 * in your sidebar.php
 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019963)
 * These are the default links that were in the default theme, I haven’t added anything
   to the sidebar… I just want to remove them.
 * Thanks again…
 *  [thisisedie](https://wordpress.org/support/users/thisisedie/)
 * (@thisisedie)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019964)
 * Make that:
 * `<ul><?php wp_list_pages('&title_li=' ); ?></ul>`
 * Forgot taking out the title takes out the ul’s.
 *  Thread Starter [isukathis](https://wordpress.org/support/users/isukathis/)
 * (@isukathis)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/#post-1019965)
 * Ok, replaced the code and that got rid of “Pages” but I still need to completely
   remove Archive, Categories and the “Meta” title….
 * Thanks

Viewing 15 replies - 1 through 15 (of 30 total)

1 [2](https://wordpress.org/support/topic/sidebar-problem-16/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/sidebar-problem-16/page/2/?output_format=md)

The topic ‘Sidebar problem’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 30 replies
 * 4 participants
 * Last reply from: [Lizbit](https://wordpress.org/support/users/lizbit/)
 * Last activity: [17 years, 2 months ago](https://wordpress.org/support/topic/sidebar-problem-16/page/2/#post-1020093)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
