Archived topic
DESPERATE FOR IMMEDIATE HELP. Full Width Footer Stopped working spontaneously -
20 replies · Started by Kasia on February 22, 2019
Updated to latest version of wordpress this morning, not sure if related. Footer was working and displaying correctly yesterday. Options in customizer are set to footer full-width, inner-footer contained.
Nothing I am trying is helping. Now footer is contained looks horrible and I have to present to client this afternoon. HELP.
Hi there,
any chance you can provide me access to the site so i can investigate the issue?
Yes Happy to provide access. How do I do this? Can you email me?
You can send login details via the Account Issue form here:
https://generatepress.com/contact/
Please add a the URL of this topic to the form so we can track.
sent
hmmm... the footer is falling within the #page container. Can you check you child theme footer template for an extra closing
?
This is the child theme footer:
<?php
/**
* The template for displaying the footer.
*
* @package GeneratePress
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<!-- #content -->
<!-- #page -->
<?php
/**
* generate_before_footer hook.
*
* @since 0.1
*/
do_action( 'generate_before_footer' );
?>
<?php
/**
* generate_before_footer_content hook.
*
* @since 0.1
*/
do_action( 'generate_before_footer_content' );
/**
* generate_footer hook.
*
* @since 1.3.42
*
* @hooked generate_construct_footer_widgets - 5
* @hooked generate_construct_footer - 10
*/
do_action( 'generate_footer' );
/**
* generate_after_footer_content hook.
*
* @since 0.1
*/
do_action( 'generate_after_footer_content' );
?>
<!-- .site-footer -->