Regarding #2 I used Jetpack and it worked out just fine. 😀
I solved the Posts header question by using the same code for the category that is used for the pages.
I would still like to remove the page title which is that same as the category name in the header. Still working on that part.
SusanRC,
Can you provide a link to a page that demonstrates your problem? Thanks.
I am working in MAMP on my computer for now. When you do a search, on the page that is returned with all of the extracts, at the top (below the header) is a kind of title in grey that says “Search results for: xyz” where xyz is whatever you were searching for.
I have a menu item for my single category (Articles) and when I click on that menu item it returns a page, much like the search page, with extracts of my articles below the header. Also, like the search page, in an area that looks like page title, above the post extracts, it shows the name of the category (Article) in grey. Since the category name also appears in the header, the title is redundant and I would like to be able to eliminate it (but not the one on the search page).
I’ve been poking around the php files (I don’t program in php (yet) but I am familiar with ASP) but I haven’t been able to determine where this title is generated.
Thanks so much. I love your theme!
Susan,
What I did was edit header.php and change:
if ( is_category() ) {
echo '<div class="header-text-first">Category</div><div class="header-text-second">' . single_cat_title("", false) . '</div>';
}
to
if ( is_category() ) {
echo '<div class="header-text-first"></div><div class="header-text-second" style="font-style: italic; text-transform: capitalize; font-size: 3em;">' . single_cat_title("", false) . '</div>';
}
and in archive.php I changed:
if ( is_category() ) :
single_cat_title();
to
if ( is_category() ) :
//single_cat_title();
And about your second question, I use a combination of NM Contact Forms and Contact Form DB.