Home › Forums › Support › DESPERATE FOR IMMEDIATE HELP. Full Width Footer Stopped working spontaneously –
- This topic has 20 replies, 2 voices, and was last updated 2 years, 7 months ago by
David.
-
AuthorPosts
-
February 22, 2019 at 6:26 am #817511
Kasia
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.
GeneratePress 2.2.2GP Premium 1.7.7February 22, 2019 at 6:28 am #817512David
StaffCustomer SupportHi there,
any chance you can provide me access to the site so i can investigate the issue?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/February 22, 2019 at 6:29 am #817513Kasia
Yes Happy to provide access. How do I do this? Can you email me?
February 22, 2019 at 6:33 am #817520David
StaffCustomer SupportYou 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.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/February 22, 2019 at 6:41 am #817531Kasia
sent
February 22, 2019 at 7:19 am #817696David
StaffCustomer Supporthmmm… the footer is falling within the #page container. Can you check you child theme footer template for an extra closing ?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/February 22, 2019 at 7:24 am #817700Kasia
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 –>
<?php
/**
* generate_after_footer hook.
*
* @since 2.1
*/
do_action( ‘generate_after_footer’ );wp_footer();
?></body>
</html>February 22, 2019 at 7:34 am #817710David
StaffCustomer SupportOn line 52 there is an additional closing DIV that is not present in the parent theme. Not sure what the purpose is:
</div><!-- .site-footer --> </div><!----- what is the purpose of this? --->
Can you try removing that
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/February 22, 2019 at 7:50 am #817722Kasia
Note: I see it in the original generate press parent theme too. I don’t know of any reason why anyone here would touch either of these files.
I removed from child theme and it is still not resolved. I do very much appreciate the help in trying to resolve this.
February 22, 2019 at 8:09 am #817740Kasia
Also note, confirmed with our developer that no changes were made to the footer or any template files either.
February 22, 2019 at 8:35 am #817763David
StaffCustomer SupportI just refreshed the site and it looks like the problem os resolved ?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/February 22, 2019 at 8:35 am #817764Kasia
I added this to the bottom of “content-page.php” and it resolved it for now. Please let me know if there is a better solution?
<!– #content –>
<!– #page –>February 22, 2019 at 8:36 am #817765Kasia
Code I pasted didn’t port over for some reason
<!– #content –>
<!– #page –>February 22, 2019 at 8:37 am #817767Kasia
still didn’t paste. at any rated just closed out the content div and the page div,
February 22, 2019 at 8:38 am #817769David
StaffCustomer Supportwhen adding code to this support tickets. you need to highlight the code and click the code button.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/ -
AuthorPosts
- You must be logged in to reply to this topic.