• Resolved SusanRC

    (@susanrc)


    Hi again —

    1. On the Posts page in the header is says “category” and then the name of the category. I would like just the name of the category and I would like it the same size as the titles in the headers on the pages. Also, I would like to remove the heading just above the first post where it repeats the name of the category again.
    2. I would like to have a contact me form on a page — is there a plugin you recommend?
    Thanks again.
    Susan

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter SusanRC

    (@susanrc)

    Regarding #2 I used Jetpack and it worked out just fine. ??

    Thread Starter SusanRC

    (@susanrc)

    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.

    Theme Author Kyle Gabriel

    (@kizniche)

    SusanRC,

    Can you provide a link to a page that demonstrates your problem? Thanks.

    Thread Starter SusanRC

    (@susanrc)

    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!

    Theme Author Kyle Gabriel

    (@kizniche)

    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();

    Theme Author Kyle Gabriel

    (@kizniche)

    And about your second question, I use a combination of NM Contact Forms and Contact Form DB.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Posts header’ is closed to new replies.