Reply To: features, welcome and home bottom sidebars not showing

Homepage Community Forums Adapt Theme Support features, welcome and home bottom sidebars not showing Reply To: features, welcome and home bottom sidebars not showing

#1496
sublimity
Customer

    Cool.  Thanks for letting me know.  After racking my brains for awhile I found a pretty simple solution.

    In the home template file (home.php) I changed this:

    remove_action( ‘genesis_loop’, ‘genesis_do_loop’ );
    add_action( ‘genesis_after_header’, ‘adapt_home_loop_helper_top’ );
    add_action( ‘genesis_after_header’, ‘adapt_home_loop_helper_middle’ );
    add_action( ‘genesis_after_header’, ‘adapt_home_loop_helper’ );

    to this:

    //remove_action( ‘genesis_loop’, ‘genesis_do_loop’ );
    add_action( ‘genesis_before_footer’, ‘adapt_home_loop_helper_top’,3 );
    add_action( ‘genesis_before_footer’, ‘adapt_home_loop_helper_middle’,3);
    add_action( ‘genesis_before_footer’, ‘adapt_home_loop_helper’,3);

    And now the content of the home page (which is static) appears at the top and the features, etc follow afterwards.