• Hello,
    it happens that the footer section is always on top. Not on the startpage but on all other pages of the Shop like my account f.E.
    In other browsers it is displayed correctly (Firefox)
    Maybe there is a solution for this…
    thx

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter spikepit1

    (@spikepit1)

    the same problem is shown when opening this official-demo site
    https://themeisle.com/demo/?theme=ShopIsle

    Hi @spikepit1 – I was having this same problem. I was able to fix it doing the following, although now the WordPress Admin Top Bar is displaced on the home page as a result. However, I can live with that versus IE11 users not being able to see my site correctly. I hope this helps you:

    In the file << shop-isle/inc/structure/footer.php >> there is an extra unnecessary
    “</div>” in line 121 after the “echo” command.

    INSTEAD OF:

    if ( ! function_exists( ‘shop_isle_footer_wrap_open’ ) ) {
    /**
    * Display the theme copyright and socials
    *
    * @since 1.0.0
    * @return void
    */
    function shop_isle_footer_wrap_open() {
    echo ‘</div><div class=”bottom-page-wrap”>’;
    }
    }

    IT SHOULD BE:

    if ( ! function_exists( ‘shop_isle_footer_wrap_open’ ) ) {
    /**
    * Display the theme copyright and socials
    *
    * @since 1.0.0
    * @return void
    */
    function shop_isle_footer_wrap_open() {
    echo ‘<div class=”bottom-page-wrap”>’;
    }
    }

    AC

    (@purplecodes)

    Themeisle Support

    Hello there,

    This issue has been reported to our developers for a fix.
    Thank you for bringing this to our attention.

    Let us know if there is anything else we can help you with.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Footersection always on top in IE (IE11)’ is closed to new replies.