Remove footer menu from posts

Posted in: Newspaper
Post count: 39

Hello, I would like to remove the footer menu of my site, except for the homepage. Is any way to achieve this?

Thanks in advance!

Post count: 6600

Hi,

You can do this via css, please use this custom css in theme panel > custom css: http://screencast.com/t/cVb4s9kYX6hL
This will hide the sub footer on all pages except homepage.

.td-sub-footer-wrap {
display: none;
}

.home .td-sub-footer-wrap {
display: block;
}

Thanks

Post count: 39

Hi Lucian, thanks for your answer.

The thing is that I need to remove the links due to SEO reasons, not only hide them. Would be possible to add some code in the single.php to only show the footer-menu in the homepage?

Thanks!

Post count: 6600

Hi,

Yes, please edit the footer.php file and change it like this: http://screencast.com/t/QfY4Qnbj

Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.