• Greetings,

    I’ve read a lot of topics which are relative with footer removal etc., but i couldn’t come into a conclusion for my own site. I am kind of newbie (since it’s my first site), so that’s why i want your “bright lights” to solve a problem i have.

    I want to remove the footer from a single page. Namely, from this website (http://dimitrisouzounis.com). Here is the footer.php. (https://www.dropbox.com/s/m0gocwx3lkl949x/footer.php)

    I’d really appreciate it, if you gave me a solution to my problem.

    Thanks in advance.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Thread Starter Nebereth

    (@nebereth)

    I’m afraid i can’t. The guy who built that, has retired and his e-mail doesn’t work anymore. That’s one of the main reasons i look for an advice in here.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Feel free to use any theme here: http://wordpress.org/themes/ – That’s what these forums are for, to support them.

    Thread Starter Nebereth

    (@nebereth)

    I thought you supported wordpress code in general, not only your own themes.

    :/

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    WordPress.org has the idea that theme vendors should support their distributed themes. If your theme author decided to release the theme on WordPress.org then we’d support it.

    If you want to remove the footer from the entire webiste, You’ll need to open up single.php and delete get_footer(); from that file. that or just hide it with CSS globally.

    #footer {
      display:none !important;
    }

    If all you want to do is remove the footer from that PAGE specifically that you posted, you can do so with CSS.

    .page-id-2 #footer {
      display:none !important;
    }

    Thread Starter Nebereth

    (@nebereth)

    Thank you Evan!

    I’ve opened the screen.css and did the following…

    .page-id-2 #footer {
    display:none !important;
    }
    This is one doesn’t work though. I replaced the “.page-id-2” with “.page-id-151” which is the id of the post i want to remove the footer but it doesn’t work. Am i doing something wrong?

    Thread Starter Nebereth

    (@nebereth)

    Evan said:

    If you want to remove the footer from the entire webiste, You’ll need to open up single.php and delete get_footer(); from that file. that or just hide it with CSS globally.
    #footer {
    display:none !important;
    }
    If all you want to do is remove the footer from that PAGE specifically that you posted, you can do so with CSS.
    .page-id-2 #footer {
    display:none !important;
    }

    What if i want to remove the footer from a POST instead of a PAGE? I tried to replace the word “page” with the word “post” but didn’t make it (it would be so easy, if it worked 😛 )
    Any suggestions now that i have hunted down the problem?

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘footer problem. please help’ is closed to new replies.