I don’t like a lot of extra stuff on my pages that isn’t necessary for getting the point of the page across so I remove my footer widgets on all pages except the home page.
Get’er Done
<p>add_action( 'genesis_before', 'child_conditional_actions' );
function child_conditional_actions() {
if( !is_home() )
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
}
</p>
Scribble this onto the bottom of your functions file and you’re good to go!