• Hello there,

    I like to delete the footer on some of my pages or posts, example: on my
    check out page in the buying process, or on my salespages.
    Is that possible with a WP plug-in
    I’ve no coding experience, only a litle html knowledge

    Christo

Viewing 2 replies - 1 through 2 (of 2 total)
  • The reason it would prove difficult to make a plugin for this is that there are very many quite varied theme’s. How a theme does the footer therefore varies.

    Assuming a theme is based on modern HTML, the footer content will be in the footer element.

    If you combine a body class with footer in CSS, you could likely target these specific pages or posts and hide the footer.

    Custom CSS Example only:

    
    body.page-template-type footer {
    display:none;
    }
    

    That is one method – the other is to create a Child Theme and then create a Page Template that calls a custom footer file.

    Thread Starter christo1959

    (@christo1959)

    Hi Pioneer webdesign,

    Thanks for the answer, but I don’t understand the code end the information, sorry. I’ve NO coding experience. I will show it to a friend of mine. Perhaps he knows what it means. My Regards Have a nice day.

    Christo

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Delete Footer on pages or posts’ is closed to new replies.