• Hello and I’d like to start by saying I have searched and searched and find this to be an issue for many many users. However Ive been unable to find a solution that I can duplicate. It seems to be the theme I’m using that gets me lost when I try to duplicate what I’ve read here. I’m one of those…background in print graphics, doing-my-best-to learn-code people.
    So that being said. I’m using the Customizr Theme.
    I know how to find the header php but once I’m there I need to know what to look for so I can make the change in the code to get rid of “Category Archives:”

    These are example of two of the pages where this is happening.
    https://hemp-eaze.com/category/herbs-and-roots/
    https://hemp-eaze.com/category/testimonials/

    Here’s the code! What do I change? Help?…and thank you ??
    <?php
    /**
    * The Header for Customizr.
    *
    * Displays all of the <head> section and everything up till <div id=”main-wrapper”>
    *
    * @package Customizr
    * @since Customizr 1.0
    */
    ?>
    <!DOCTYPE html>
    <!–[if IE 7]>
    <html class=”ie ie7″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if IE 8]>
    <html class=”ie ie8″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if !(IE 7) | !(IE 8) ]><!–>
    <html <?php language_attributes(); ?>>
    <!–<![endif]–>
    <?php
    //the ‘__before_body’ hook is used by TC_header_main::$instance->tc_head_display()
    do_action( ‘__before_body’ );
    ?>

    <body <?php body_class(); ?> <?php echo apply_filters(‘tc_body_attributes’ , ‘itemscope itemtype=”https://schema.org/WebPage”&#8216;) ?>>

    <?php do_action( ‘__before_header’ ); ?>

    <header class=”<?php echo apply_filters(‘tc_header_classes’, ‘tc-header clearfix row-fluid’) ?>” role=”banner”>

    <?php
    //the ‘__header’ hook is used by (ordered by priorities) : TC_header_main::$instance->tc_logo_title_display(), TC_header_main::$instance->tc_tagline_display(), TC_header_main::$instance->tc_navbar_display()
    do_action( ‘__header’ );
    ?>

    </header>

    <?php
    //This hook is filtered with the slider : TC_slider::$instance->tc_slider_display()
    do_action ( ‘__after_header’ )
    ?>

  • The topic ‘Remove Category Archives:’ is closed to new replies.