• Resolved rv3flyer

    (@rv3flyer)


    Hi,

    The header image for all the pages other than my Home page has disappeared. It’s the same image for each page. I don’t know what I did to cause this. I noticed it after I tried to unpublish one page that we don’t use anymore.

    When I go into the sidebar and go into Appearance-Header, the image is there and looks to be set as the active header. I tried to Hide it and then reset it, but that didn’t bring it back. Any ideas why this happened and how to fix it? It really ruins the look of our site. Here’s the link: https://www.sportaircraftservices.com Thanks for any help you can provide.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi rv3flyer,

    We are really sorry for the trouble, header image are not made available on all pages since from latest version 1.2.0. If you want to render header image on all pages you need to customize header.php file of child theme. [We assumed that you know well on how to customize template of parent theme on child theme]

    please see this example for the reference:

    <?php if( (is_active_sidebar( 'left-banner' ) || has_header_image() ) && !is_front_page() ) { ?>
            <aside id="la-banner" class="lr_responsive_banner" style="background-image: url('<?php header_image(); ?>'); color: <?php echo esc_html(get_theme_mod( 'banner_text_colour', '#ffffff' )); ?>;">
    
                <?php get_sidebar( 'banner' ); ?>
    
            </aside>
    <?php }

    Hope this helps for you.

    Thanks

    Thread Starter rv3flyer

    (@rv3flyer)

    Hi, thanks for the example. I don’t know much about coding, but I can create a child theme and paste this in there. Do I need to change any part of that text to make it work? (Like add the URL to the image or something)

    Thanks,
    Katie

    Thread Starter rv3flyer

    (@rv3flyer)

    Please disregard the previous post. I created a child theme and pasted the code as published into the header.php file and it brought the photo headers back. Thank you! Getting closer.

    One last nagging problem. On all pages except my home page, the page title (Contact, Services, Seminars, etc) is above the photo and overlapped by the logo image. How can I move the page title back down where it belongs, above the text?

    This was all working perfectly before the theme update. It’s pretty frustrating.

    Hi there,

    It seems you had placed breadcrum section above the banner image so your page title is overlapping.

    <div class="style_breadcrumbs lavish_header_none">
    		<div class="container">
    			<div class="row">
    				<div class="col-md-4">
    													<h1>Blog</h1>
    											</div>
    				<div class="col-md-8 breadcrumb_items">
    
    				</div>
    			</div>
    		</div>
    	</div>

    And for the kind inforamtion we are already on lavish version 1.3.0 version,please update to latest version

    Be sure you had placed back-up of your site, because on updating theme latest version, your changes on core will be overwrite by new theme .

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Header image disappeared’ is closed to new replies.