• Resolved mimik1987

    (@mimik1987)


    Hi, I’m pretty sure, I did something wrong regarding placing the code.
    I’m using the theme shopisle.

    My header.php looks like this:

    <?php
    /**
    * The header for our theme.
    *
    * @package shop-isle
    */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?> <?php shop_isle_html_tag_schema(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
    <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>
    <link rel=”profile” href=”https://gmpg.org/xfn/11″&gt;
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>

    <?php wp_head(); ?>
    <script type=”text/javascript”>// <![CDATA[
    jQuery(document).ready(function($){
    $(‘.footer-social-links a’).each(function(){
    if( $(this).attr(‘href’) && 0 != $(this).attr(‘href’).indexOf(‘#’) ) {
    $(this).attr(‘target’, ‘_blank’);
    }
    });
    });
    // ]]></script>
    </head>

    <body <?php body_class(); ?>>

    <?php do_action( ‘apply_header_images’ ); ?>

    <!– Preloader –>
    <?php

    /* Preloader */
    if(is_front_page() && !is_customize_preview() && get_option( ‘show_on_front’ ) != ‘page’ ):

    $shop_isle_disable_preloader = get_theme_mod(‘shop_isle_disable_preloader’);

    if( isset($shop_isle_disable_preloader) && ($shop_isle_disable_preloader != 1) ):

    echo ‘<div class=”page-loader”>’;
    echo ‘<div class=”loader”>’.__(‘Loading…’,’shop-isle’).'</div>’;
    echo ‘</div>’;

    endif;

    endif;

    ?>

    <?php do_action( ‘shop_isle_header’ ); ?>

    <?php do_action( ‘shop_isle_after_header’ ); ?>

    the line:
    <?php do_action( ‘apply_header_images’ ); ?>
    was
    <?php do_action( ‘shop_isle_before_header’ ); ?>
    before.

    Now I’ve got 2 headers and although I used a picture of 1200X280 px (as recommended for the theme) it’s not showing correctly.

    It’s my first website and I’d be so thankful if you could help me.
    Thanks in advance
    Miriam

    (website: https://https://web28.c20.webspace-verkauf.de/?page_id=63)

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter mimik1987

    (@mimik1987)

    Plugin Author Fahad Mahmood

    (@fahadmahmood)

    Nothing wrong with two headers, in fact there is only one header with this plugin and the other one is generated by your theme. You can either find it and comment that part or can hide it with CSS. Find this “page-header-module” in your files or simply make it display:none in CSS.

    Thread Starter mimik1987

    (@mimik1987)

    Okay, I’ve done that with css. But now there’s a small line under the picture. Is it possible to remove it?

    Thread Starter mimik1987

    (@mimik1987)

    Okay, I got rid of that line. But bow there’s another problem:
    The header is showing on the front page, if the header in the Impressum area is activated. But somehow the Impressum and shop area are linked because there’s no header in the shop area when there’s none in the impressum.

    Plugin Author Fahad Mahmood

    (@fahadmahmood)

    Try to manage it with CSS.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Now 2 headers’ is closed to new replies.