Reply To: Moving the Order of the Widgets Please…

Homepage Community Forums Epik Theme Support Moving the Order of the Widgets Please… Reply To: Moving the Order of the Widgets Please…

#15240
m
Customer

    Hey Wes, thank you for being so kind and patient.

    I am sure you get bombarded every day by all of your Epik users :).

    If the solution is simply moving the code of the section 9,10,11,12,13,14 all the way up and paste it right after the section of 1,2,3,4 like seen below, then it did not work, things have remained the same. Is that all that is involved in moving widgets?

    Or do I need to modify something else please?

    Thank you!

    /**
    * Display widget content for “Home Feature 1, 2, 3, and 4″ sections.
    *
    */
    function epik_home_loop_helper_middle() {
    
    if ( is_active_sidebar( ‘home-feature-1′ ) || is_active_sidebar( ‘home-feature-2′ ) ) {
    
    echo ‘<div class=”home-feature-bg-alt”><div class=”wrap”>';
    
    genesis_widget_area( ‘home-feature-1′, array(
    ‘before’ => ‘<div class=”home-feature-1″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-2′, array(
    ‘before’ => ‘<div class=”home-feature-2″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    echo ‘</div><!– end .wrap –></div><!– end #home-feature-bg-alt –>';
    
    }
    
    genesis_widget_area( ‘home-feature-3′, array(
    ‘before’ => ‘<div class=”home-feature-bg”><div class=”wrap”><div class=”home-feature-3″>’,
    ‘after’ => ‘</div></div></div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-4′, array(
    ‘before’ => ‘<div class=”home-feature-bg-alt”><div class=”wrap”><div class=”home-feature-4″>’,
    ‘after’ => ‘</div></div></div>’,
    ) );
    
    }
    
    /**
    * Display widget content for the “Home Feature 9, 10, 11, 12, 13, and 14″ sections.
    *
    */
    function epik_home_loop_helper_bottom() {
    
    if ( is_active_sidebar( ‘home-feature-9′ ) || is_active_sidebar( ‘home-feature-10′ ) || is_active_sidebar( ‘home-feature-11′ ) || is_active_sidebar( ‘home-feature-12′ ) || is_active_sidebar( ‘home-feature-13′ ) ) {
    
    echo ‘<div class=”home-feature-bg”><div class=”wrap”>';
    
    genesis_widget_area( ‘home-feature-9′, array(
    ‘before’ => ‘<div class=”home-feature-9″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-10′, array(
    ‘before’ => ‘<div class=”home-feature-10″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-11′, array(
    ‘before’ => ‘<div class=”home-feature-11″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-12′, array(
    ‘before’ => ‘<div class=”home-feature-12″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    genesis_widget_area( ‘home-feature-13′, array(
    ‘before’ => ‘<div class=”home-feature-13″>’,
    ‘after’ => ‘</div>’,
    ) );
    
    echo ‘</div><!– end .wrap –></div><!– end #home-feature-bg –>';
    
    }
    
    genesis_widget_area( ‘home-feature-14′, array(
    ‘before’ => ‘<div class=”home-feature-bg-alt”><div class=”wrap”><div class=”home-feature-14″>’,
    ‘after’ => ‘</div></div></div>’,
    ) );
    
    }

    Thanks again, truly appreciate it! I am sure a lot of users moving forward, will benefit from this post if they wish to move the display order of the widgets.