• Resolved markjmills

    (@markjmills)


    Hi, I’m using the Aaron theme and having trouble with the attributes on my Blog page.

    First, I created a new Post. Then, in Pages I created a Blog page. In Settings/Reading, I selected Static Page and listed the Home page as the Front Page, and the Blog page as the Post Page.

    My blog page is working correctly, but is taking the attributes of my Static Front Page (Home page)- which I do not want. On the Home page the theme has a large header with a Call to Action and photo which I do not want on my blog page.

    How can I make these attributes go away for the Blog page?

    Here is the page.
    http://bridgepointsc.com/blog/

    Thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Carolina Nymark

    (@poena)

    Hi
    That is correct, Aaron does not have a separate blog listing template.

    To remove the header from the blog, copy header.php into your child theme.

    Find line 37:
    if ( is_home() || is_front_page() || is_singular() && aaron_get_meta( 'aaron_show_header' ) ) {?>

    Remove is_home() ||

    So the line should be:

    if ( is_front_page() || is_singular() && aaron_get_meta( 'aaron_show_header' ) ) {?>

    Thread Starter markjmills

    (@markjmills)

    Carolina,
    Thank you very much for the reply. This was very helpful and I’ve solved my issue.

    Thanks again for your help.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Attributes on Post Page’ is closed to new replies.