• Hi there,

    I’m new to CSS, and love the Bueno Theme. I’ve customized it a bit and it’s been fun. πŸ™‚ For the life of me, however, I cannot figure out how to change the “Uncategorized” link at the top of the page here: http://SocialMegaphone.com.

    I took a photo for you to see what I’m talking about: header

    I’ve even changed the name of that category to see if that would change what it says up there, but no success.

    Help would be great. Thanks tons!

Viewing 3 replies - 1 through 3 (of 3 total)
  • why just not to ask the support team from the site you purchased the theme?

    in header.php, there is likely to be some code with wp_list_categories() or very similar – delete this or comment it out.

    (your theme could of course be more complicated)
    (for help with that, you could paste the code of header.php into a http://wordpress.pastebin.com/ and post the link to it here)

    or there might be a theme option to show or not to show a category menu at the top of the header.

    IJLDesigns

    (@ijldesigns)

    I just stumbled across this because I am trying to do the same thing.

    This is what worked for me –

    find this code in your header: <?php wp_list_categories('sort_column=menu_order&depth=3&title_li='); ?>

    Add &exclude=1 to the end of the string just before the end ' like this:

    <?php wp_list_categories('sort_column=menu_order&depth=3&title_li=&exclude=1'); ?>

    Since the “Uncategorized” category is listed as category 1 for me (and I suspect for everybody else) I excluded category 1.

    Hope this helps!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I get rid of categories here?’ is closed to new replies.