How to remove the 'Browsing Category' text and title from my word-press template

  • Unknown's avatar

    I have a blog that I want to split into categories but make the categories seem like individual pages. Hence I want to remove the title and extra text that appears when clicking on a category “Currently Browsing category”

    I have tried using custom CSS but it did not work. Also tried adding a custom function but did not work either. I think I need to modify the Category.php as shown below but am not sure which lines I must change.

    <?php get_header(); ?>

    <?php
    global $ilgelo_options;
    $category_blog_layout = “3”;
    if (!empty($ilgelo_options[‘ilgelo-category-layout’])) {
    $category_blog_layout=$ilgelo_options[‘ilgelo-category-layout’];
    }
    ?>
    <!– LAYOUT 1 FULL–>
    <?php if ($category_blog_layout==”1″): ?>
    <?php include(TEMPLATEPATH.”/template/category-full.php”);?>
    <?php endif; ?>
    <!– END LAYOUT 1 –>

    <!– LAYOUT 2 LEFT –>
    <?php if ($category_blog_layout==”2″): ?>
    <?php include(TEMPLATEPATH.”/template/category-sider-left.php”);?>
    <?php endif; ?>
    <!– END LAYOUT 2 –>

    <!– LAYOUT 3 RIGHT–>
    <?php if ($category_blog_layout==”3″): ?>
    <?php include(TEMPLATEPATH.”/template/category-sider-right.php”);?>
    <?php endif; ?>
    <!– END LAYOUT 3 –>

    <!– LAYOUT 4 RIGHT–>
    <?php if ($category_blog_layout==”4″): ?>
    <?php include(TEMPLATEPATH.”/template/category-list.php”);?>
    <?php endif; ?>
    <!– END LAYOUT 4 –>

    <!– LAYOUT 5 RIGHT–>
    <?php if ($category_blog_layout==”5″): ?>
    <?php include(TEMPLATEPATH.”/template/category-grid.php”);?>
    <?php endif; ?>
    <!– END LAYOUT 5 –>

    <?php get_footer(); ?>

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    Looks like you’re in the wrong forum. Your site is using the self-hosted version of WordPress and you need to seek help at the WordPress.org forums:

    https://wordpress.org/support/forums/

    These forums are for WordPress.com hosted sites only. If you want to know more about the differences between WordPress.com and WordPress.org you can read this document:

    WordPress.com vs. WordPress.org

  • The topic ‘How to remove the 'Browsing Category' text and title from my word-press template’ is closed to new replies.