• Resolved vheissucreative

    (@vheissucreative)


    Hi,

    I’m using the Verbo theme and my website is, vheissucreative.com

    The verbo theme has a header background img that you can change using the appearance>customize option. All additional pages created do not have this background img and has the page name instead.

    When I go into, settings>readings and change the posts page to “Articles”, then go to view the page live, it now takes that background img from the home page instead of using the same template as the rest of the interior pages. When I turn the posts page off it takes on the interior page template.

    I want the Articles page to take the posts but still keep the interior page template. I do not want the home page header background image to be on that page when posts page is selected.

    Any help would be greatly appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,
    In header.php of verbo folder, removing the is_home() function from the last php line of code worked for me.
    before

    <?php
                    if( (( is_home() || is_front_page() ) && myThemes::get( 'show-header' ) ){
                        get_template_part( 'cfg/templates/header' );
                    }
                ?>

    after

    <?php
                    if( (  is_front_page() ) && myThemes::get( 'show-header' ) ){
                        get_template_part( 'cfg/templates/header' );
                    }
                ?>

    Theme Author mythemes

    (@mythemes)

    So dear vheissucreative,

    Aishwarya has a partial solution for your problem.

    Also is need add the true condition for delimiter ( between menu and content )

    header.php line 84

    if( is_single() || ( ( is_home() || is_front_page() ) && !myThemes::get( ‘show-header’ ) ) ){

    is need replace with

    if( is_single() || ( is_front_page() && !myThemes::get( ‘show-header’ ) ) ){

    Thread Starter vheissucreative

    (@vheissucreative)

    Thanks to both Aishwarya and mythemes for the help.

    This has solved part of my issue but is not the complete fix. This did remove the header background image from my “Articles” page which is excellent!

    I would also like the “Articles” page to take on the same format as the rest of the interior pages with the grey box, page title and path underneath it. Do you know how to get this added back onto the articles page?

    Thanks!

    Theme Author mythemes

    (@mythemes)

    single post or listed ( blog page with listed articles ) ?

    Thread Starter vheissucreative

    (@vheissucreative)

    Hey mythemes,

    Sorry it’s taken me a while to respond during the holidays. So if you visit my site again (vheissucreative.com) and go to the “Work” page, underneath my logo there is the gray bar that has “WORK” then below that is says Home > Work.

    If you view my “Articles” page if does not have this gray bar or any of that copy. I would like to look the same. The articles page is my blog post page.

    If you know how to fix this that would be great!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Header Background IMG Showing up on Internal Page when Posts Page is selected’ is closed to new replies.