How to disable the background on pages and post and leave only on the home page?

Posted in: Newspaper
Post count: 61

Hi buddies, I need descativar the background pages and post and leave the background only on the home page. I would also like to know if there a way to disable the page footer?

Post count: 6535

Hi

To deactivate the background image on all other pages and post, except the home page add this conditions in td_background_render.php file like here:

if (!is_front_page()){
return;
}

Note that if you’re using the blog template: http://screencast.com/t/0HVZuti3Z the function that must be used is is_home:

if (!is_home()){
return;
}

The footer can be deactivated from theme panel > footer: http://screencast.com/t/Zqffjzvh

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.