Home › Community Forums › Adapt Theme Support › HOme sidebar problem › Reply To: HOme sidebar problem

I am stuck here, so I seperated the home-sidebar 1 and 2 but now I am trying to figure out the home sidebar and featured posts.
here is what I have and am working on.
*/
function adapt_home_loop_helper() {
if ( is_active_sidebar( ‘home-bottom-sidebar-1’ ) || is_active_sidebar( ‘home-bottom-sidebar-2’ ) || is_active_sidebar( ‘home-bottom-sidebar’ ) || is_active_sidebar( ‘home-featured-posts’ ) || is_active_sidebar( ‘home-bottom-top-message’ ) ) {
echo ”;
if ( is_active_sidebar( ‘home-bottom-top-message’ ) ) {
echo ”;
dynamic_sidebar( ‘home-bottom-top-message’ );
echo ‘‘;
}
if ( is_active_sidebar( ‘home-bottom-sidebar-1’ ) ) {
echo ”;
dynamic_sidebar( ‘home-bottom-sidebar-1’ );
echo ‘‘;
}
if ( is_active_sidebar( ‘home-bottom-sidebar-2’ ) ) {
echo ”;
dynamic_sidebar( ‘home-bottom-sidebar-2’ );
echo ‘‘;
}
echo ‘‘;
if ( is_active_sidebar( ‘home-bottom-sidebar’ ) ) {
echo ”;
dynamic_sidebar( ‘home-bottom-sidebar’ );
echo ‘‘;
}
if ( is_active_sidebar( ‘home-featured-posts’ ) ) {
echo ”;
dynamic_sidebar( ‘home-featured-posts’ );
echo ‘‘;
}
if ( is_active_sidebar( ‘home-bottom-message’ ) ) {
echo ”;
dynamic_sidebar( ‘home-bottom-message’ );
echo ‘‘;
}
}
}
genesis();