the code is in category.php of the theme;
<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1>
start by creating a child theme of Twenty Fourteen, add edit a copy of category.php in the child theme.
change the above code for example to:
<h1 class="archive-title"><?php single_cat_title( '' ); ?></h1>
Great! It worked! Thank you very much.
Would you happen to know how to take out the post title on the main page but keep the other titles on the rest of the posts?
Hey,
Just wanted to post this in case someone else was looking, I found a solution to my second question, here: https://ww.wp.xz.cn/support/topic/remove-home-title-from-front-static-page-twenty-fourteen-theme?replies=12
The more non-destructive way to do it as crystalm36 mentions would be to do it via Customize > Additional CSS, using the display property.
In my case, this is what worked:
header.archive-header {
display: none;
}
I used under Appearance >> Customize >> Addtional CSS; than added this code:
.category .page-header { display: none; }
Problem resolved
-
This reply was modified 8 years, 11 months ago by
only1synergy.