Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Ok, the solution is very simple:

    From your WP side panel Click Appearance->Editor

    Scroll down and find the page the says Main Index Page (index.php)

    in the while loop you will see these two lines:

    if ( get_theme_mod ( ‘blog_view’, ‘1’ ) )
    { get_template_part( ‘content’, ‘blog’)
    } else { get_template_part( ‘content’, get_post_format() );}
    Comment those two out, like this

    /*if ( get_theme_mod ( ‘blog_view’, ‘1’ ) )
    { get_template_part( ‘content’, ‘blog’)
    } else { get_template_part( ‘content’, get_post_format() );}*/

    Then add this line, it will format that page as a “page” instead of a “generic blog post”.
    get_template_part( ‘content’, ‘page’ );

    If this worked for you can you mark this as solved as well, it really helps the community.

    Hope this helps,
    Best Regards

    Andrew

    I have some updates now, I have verified that Posts and all other pages minus the static front page has this issue.

    *Does not have this issue sorry

    I have some updates now, I have verified that Posts and all other pages minus the static front page has this issue.

    Is the problem you are having on a static intro page? this will help me find where the problem is.

    I do not have an answer for this yet, I can tell you though that trying to hack together any kind of HTML does not work either, so I believe something in their PHP is causing the issue. I will go through all of their code and see if I can find the issue, I will post a work around when I find it. They have a lot of code for this theme though. Fingers Crossed

    Thanks
    A

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