Skip to content
Public Ticket #32213

Disable footer

Conversation thread

PenciDesign Supporter replied

Staff Reply

Hi,

You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/

add_filter( 'get_template_part', function ( $slug, $name ) {
    if ( ( is_single() || is_page() ) && $slug === 'template-parts/footer/footer' ) {
        return false;
    }
    return $slug;
}, 10, 2 );

Regards,
PenciDesign.

JOSE L VASQUEZ started the conversation

Conversation Start

Hi, I need to disable the footer ONLY in the single posts, and pages, NO in the Home page. How can I do that please?

Want to join this conversation or access attachments? Sign in first.