• Resolved sadakro

    (@sadakro)


    Hello! I recently downloaded a couple of WordPress Themes and tried to install them. They work fine, but the issue is that I can’t see the footer. I do have it in the theme folder, it’s uploaded, and I still can’t see it. People told me that it could be some </div> or <div> not in the right place, or that it could be the wp_footer() thing. I tried solving both problems, but the footer doesn’t work. Could you help me, please?

    The code looks like that:
    `</div>
    <!– end content –>

    </div>
    <!– end wrapper –>

    <!– begin footer –>
    <div id=”footer”>
    © 2010 Christian Vasile. All Right Reserved.
    <ul id=”bottomLinks”>

    • /”>home
    • <?php wp_list_pages(‘title_li=’) ?>

      </div>

      <!– end footer –>
      <?php if (get_option(‘rockwell_analytics’) <> “”) {
      echo stripslashes(stripslashes(get_option(‘rockwell_analytics’)));
      } ?>
      </body>
      </html>`
      And one of the theme is http://wordpress.site5.net/rockwell/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I would try adding wp_footer() right above the </body>. If you are not seeing it in the HTML output then wrap it like so

    <!-- start insert wp_footer -->
    <?php wp_footer(); ?>
    <!-- end insert wp_footer -->
    </body>

    Which theme did you download and can you provide a link to your site? That link looked like a demo site for the theme.

    Thread Starter sadakro

    (@sadakro)

    The theme is from here, and is the third one, called Rockwell
    http://www.site5.com/wordpress-themes/

    Adding the wp_footer() does not work, it may also be from something else than footer.php, wouldn’t it?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    How does it not work? Do you see the HTML comments in the output? I downloaded one of the themes and modifying the footer.php looks straight forward enough.

    Add that HTML comment to see even if the additions you are making are showing up in the web page source.

    Thread Starter sadakro

    (@sadakro)

    I added the comments, the same problem. Tried another theme, the same problem. I start to think that the issue is about some other file from my blog, not especially about footer.php

    @sadakro
    it is probably a good guess that one of the posts is causing the lost footer.
    if you would like to get help with that, please post a link to your site where the problem can be seen.

    Thread Starter sadakro

    (@sadakro)

    I solved it, it was beacause of an widget

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Footer issue’ is closed to new replies.