• Hello, I have configured the 4 areas of the footer, but not shown. Why can it be? In local, yes they are, but if I upload it to the server, are not seen.
    How I can fix it?
    Thank you very much.

    (sorry for my English)

Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi Tzita,
    You may post the link, so that someone can check it.

    Regards
    sourav b

    Thread Starter Tzita

    (@tzita)

    Hi Souravb,
    this is my web:
    web
    But here, the footer apeared:
    footer yes

    I researched a little more, and I see that when you do not see the footer, drop down menu does not work either (in smalls screens. The javascript disapeared). And in the page that the footer is displayed, the menu works right.

    Hello Tzita,

    Are you sure the footer.php is included in the particular page template or index.php? Because I cannot see any “<div class=”footer-wrapper”>” in your link as it is there in the other link with footer. Either the footer.php is not included in page template or index.php (whichever is applicable) or there is script error in footer.php.

    Regards
    sourav b

    Thread Starter Tzita

    (@tzita)

    In index.php, page.php and blog.php calls the footer like this:

    <!--End Sidebar-->
      </div>
    </div>
    </div>
    </div>
    <?php get_footer(); ?>

    In local the footer and the movile menu are visible, and in server, disapeared. But in blog page, it works wright!! Why?? I don’t understand…

    Thread Starter Tzita

    (@tzita)

    I’ve been comparing the two style.css (local and server) if something had changed, but they are the same.
    Javascrit disappears …

    Thank you very much.

    Thread Starter Tzita

    (@tzita)

    Is the default template, page.php

    Can you show the code of page.php ?

    Regards
    sourav b

    Thread Starter Tzita

    (@tzita)

    Yes, this is the code:

    <?php
    /**
     * The template for displaying all pages.
     *
     * This is the template that displays all pages by default.
     * Please note that this is the wordpress construct of pages
     * and that other 'pages' on your wordpress site will use a
     * different template.
     *
     */
    ?>
    <?php get_header(); ?>
    <div class="heading_wrapper">
      <div class="heading_container">
        <div class="page-heading">
          <h1>
            <?php the_title(); ?>
            &nbsp;&nbsp;<img src="<?php echo get_template_directory_uri(); ?>/images/arrow.png"  alt="arrow"/></h1>
        </div>
      </div>
    </div>
    <div class="clear"></div>
    <div class="page-content">
      <div class="grid_16 alpha">
        <div class="content-bar sample">
          <!--post start-->
          <?php if (have_posts()) :  the_post(); ?>
          <?php the_content(); ?>
    	  <div class="clear"></div>
    	  <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'infoway' ) . '</span>', 'after' => '</div>' ) ); ?>
          <?php endif; ?>
          <!--End Post-->
        </div>
    	<!--Start Comment box-->
    	<?php comments_template(); ?>
    	<!--End Comment box-->
      </div>
      <div class="grid_8 omega">
        <!--Start Sidebar-->
        <?php get_sidebar(); ?>
        <!--End Sidebar-->
      </div>
    </div>
    </div>
    </div>
    <?php get_footer(); ?>

    Thread Starter Tzita

    (@tzita)

    I do not know. What I can do?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Footer widget area invisible’ is closed to new replies.