Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #48112
    Salome
    Member

    Hi,

    I know how to get rid of the “Category Archives: Category Name” with the custom css. But I have a different problem. I want to keep the category´s name but just cut out the 2 words “Category Archives:”.

    Here´s my page: dietraumfabrik.de/category/fitness

    It should just say “Fitness” at the top and leave out “Category Archives:”

    Is that possible and if yes, then how? 🙂

    #48118
    Sakin
    Keymaster

    @Salome: To remove the word Category Archives only. You need to build child theme. You can check out http://catchthemes.com/blog/create-child-theme-wordpress/ for Child Theme Tutorial and sample child theme. Then copy content.php file to your child theme and then replace the code:

    <?php printf( __( 'Category Archives: %s', 'simplecatch' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?>

    With the following code:
    <?php printf( __( '%s', 'simplecatch' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?>

    #48224
    Salome
    Member

    Thanks for your support! I´ll try that

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Get rid of "Category Archives" but leave the category name in’ is closed to new replies.