Remove "Category:"

I really like this template but I have one question:
How do I remove the “Category: Chair Covers” from the top of this page and other pages similar to it?
http://www.onedollarchaircovers.com/category/products/chair-covers-products/

Thank you

Hi Alis,

  1. Create a child theme, Child Themes « WordPress Codex
  2. Add put this in your child theme’s functions.php
add_filter( 'get_the_archive_title', 'sparkling_remove_category');
function sparkling_remove_category ( $title ) {
    if( is_category() ) {
        $title = single_cat_title( '', false );
    }
    return $title;
}

it will remove the category: from the category view.

Let us know,

Thanks,
laranz.

hey there
Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSS in appearance - customize - additional CSS

.page-header {
display: none;
}

Thanks!
Colorlib Support Team