hinch
Member
Re: Wordpress
ok follow these instructions (pretty closely although you're content will be slightly different due to a different theme)
goto appearance > editor.
select tag.php on the right (tags template)
inside that file look for something very similar to this block of code below
In you're case you're looking for the block of code surrounding a line that will contain the key words "Archive for the"
in my example above you can see my line is like this
The key phrase I searched for was "Tag Archives"
find the <div> and </div> code that is surrounding everything again in my example above its <header class="page-header"> and </div>.
Select it all including the div tags and delete then resave the template.
This should have removed your headers (assuming the pages are generated by tags not cats which is what mine does for some reason)
If it doesn't then do the above but this time in "category template" category.php
If you're still struggling let me know and I'll make you a quick tutorial video showing how to do it
ok follow these instructions (pretty closely although you're content will be slightly different due to a different theme)
goto appearance > editor.
select tag.php on the right (tags template)
inside that file look for something very similar to this block of code below
Code:
<header class="page-header">
<h1 class="page-title"><?php
printf( __( 'Tag Archives: %s', 'twentyeleven' ), '<span>' . single_tag_title( '', false ) . '</span>' );
?></h1>
<?php
$tag_description = tag_description();
if ( ! empty( $tag_description ) )
echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );
?>
</header>
In you're case you're looking for the block of code surrounding a line that will contain the key words "Archive for the"
in my example above you can see my line is like this
Code:
printf( __( 'Tag Archives: %s', 'twentyeleven' ), '<span>' . single_tag_title( '', false ) . '</span>' );
find the <div> and </div> code that is surrounding everything again in my example above its <header class="page-header"> and </div>.
Select it all including the div tags and delete then resave the template.
This should have removed your headers (assuming the pages are generated by tags not cats which is what mine does for some reason)
If it doesn't then do the above but this time in "category template" category.php
If you're still struggling let me know and I'll make you a quick tutorial video showing how to do it