Footer-Widgeted is a multi-column footer section that can be added to any Genesis child theme using the following code:
Add this block of code to your functions.php file:
add_action( 'genesis_before', 'child_conditional_actions' );
function child_conditional_actions() {
if( is_home() )
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
}












