Viewing 15 replies - 1 through 15 (of 30 total)
  • Thread Starter isukathis

    (@isukathis)

    Sorry, Login has also dissapeared…

    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 πŸ™‚

    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 πŸ™‚

    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.

    Ooops, it’s a widget indeed. I always forget to look for widgets. Hate widgets, heh.

    Thread Starter isukathis

    (@isukathis)

    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…

    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

    (@isukathis)

    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

    Click to edit the widgets and remove the titles. Make sure you save after you edit.

    *delete*

    Thread Starter isukathis

    (@isukathis)

    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…

    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

    (@isukathis)

    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…

    Make that:

    <ul><?php wp_list_pages('&title_li=' ); ?></ul>

    Forgot taking out the title takes out the ul’s.

    Thread Starter isukathis

    (@isukathis)

    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)
  • The topic ‘Sidebar problem’ is closed to new replies.