Viewing 6 replies - 1 through 6 (of 6 total)
  • there might be some code for a category menu in the header.php file;

    edit header.php and look for wp_list_categories() (with some stuff in the brackets)

    for example:
    wp_list_categories('title_li=');

    add &show_option_none= to it; so the example would look like:
    wp_list_categories('title_li=&show_option_none=');

    – not documented in
    https://codex.www.ads-software.com/Template_Tags/wp_list_categories

    Thread Starter flemingxrt

    (@flemingxrt)

    this is the only thing i saw category in. <?php if(is_home()){
    echo ‘id=”home”‘;
    }elseif(is_category(get_option(‘boldy_portfolio’)) || post_is_in_descendant_category( get_option(‘boldy_portfolio’)) && !is_single()){
    echo ‘id=”portfolio”‘;
    }?>>

    how is the rest of the menu made?
    (that might be the code before the one you are looking for)

    or you could paste the code of header.php (assuming the the menu code is in there) into a https://wordpress.pastebin.com/ and post the link to it here.

    is the theme seller offering support?

    Thread Starter flemingxrt

    (@flemingxrt)

    Heres the entire header

    [code moderated as per forum rules - please us the pastebin]

    I dont think it offers support I checked. Also im pretty sure the person that made it is german or something.

    You probably need to take a look at the contents of the primarymenu() function, which you should find in your Theme’s functions.php file.

    Thread Starter flemingxrt

    (@flemingxrt)

    ah, ha! I found the category text in the theme functions.php and coded it out with &show_option_none=. Thanks guys!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘No categories text appears in my header’ is closed to new replies.