• Resolved coltsman4ever

    (@coltsman4ever)


    I’m using Header Footer version 1.0.12 and my footer has disappeared from all pages on my GeneratePress themed website.
    It was there before and now it’s gone. The header is still there.
    I’m using Elementor 2.0.4 with WordPress 4.9.5

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

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Nikhil Chavan

    (@nikschavan)

    Hello @coltsman4ever,

    Can you check if you have disabled the footer from post meta settings? – https://cl.ly/qsAs
    Or from Customizer option?

    Thread Starter coltsman4ever

    (@coltsman4ever)

    I don’t have that option available to me.

    Plugin Author Nikhil Chavan

    (@nikschavan)

    Can you give a list of plugins installed on your site?

    Thread Starter coltsman4ever

    (@coltsman4ever)

    Addons for Elementor
    Coming Soon Page & Maintenance Mode by SeedProd
    Elementor
    Elementor Pro
    Essential Addons for Elementor
    Google Analytics Dashboard for WP (GADWP)
    Header Footer Elementor
    Instagram Feed
    Kirki Toolkit
    My Custom Functions
    NS Frontend Add Product
    SG Optimizer
    The Events Calendar
    WooCommerce
    WooCommerce Social Media Share Buttons
    WP Google Maps
    WP Popup Plugin
    WP Smush
    Yoast SEO

    Plugin Author Nikhil Chavan

    (@nikschavan)

    Can you try deactivating all the plugins except Elementor and Header Footer Elementor and see if the footer is working correctly?

    If the problem still exists can you open up a support ticket from support form here?

    Thread Starter coltsman4ever

    (@coltsman4ever)

    OK, yes! Now the footer is working so one of my plugins is causing the problem.
    Do I need to go thru them one-by-one to see which one is causing the issue?

    Plugin Author Nikhil Chavan

    (@nikschavan)

    Yes, Activate one plugin at a time and see which plugin is disabling the Footer.

    Thread Starter coltsman4ever

    (@coltsman4ever)

    It appears to be the My Custom Functions plugin which contains the following code:

    /* Enter your custom functions here */
    function your_prefix_hide_footer_markup_on_page( $status ) {
    
    	// 130 is the ID of the page where you want to disale the footer.
    	if ( 823 == get_the_id() ) {
    		$status = false;
    	}
    
    	return false;
    
    }
    
    add_filter( 'enable_hfe_render_footer', 'your_prefix_hide_footer_markup_on_page' );
    
    function your_prefix_hide_header_markup_on_page( $status ) {
    
    	// 130 is the ID of the page where you want to disale the header.
    	if ( 823 == get_the_id() ) {
    		$status = false;
    	}
    
    	return $status;
    
    }
    
    add_filter( 'enable_hfe_render_header', 'your_prefix_hide_header_markup_on_page' );
    Plugin Author Nikhil Chavan

    (@nikschavan)

    Hello @coltsman4ever,

    that code is indeed used to disable header and fotter. Can you comment/remove this code temporarily and see if this fixes your problem?

    Plugin Author Nikhil Chavan

    (@nikschavan)

    Marking as resolved due to inactivity. Feel free to reply here or open up a new issue if you are still facing this problem.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Footer not working with GeneratePress’ is closed to new replies.