Step 1: Removing the code of front page 1 widget areas from altitude_front_page_widgets() function. This function is locating in front-page.php file.
1 2 3 4 5 6 7 |
genesis_widget_area( 'front-page-1', array( 'before' => '<div id="front-page-1" class="front-page-1"> <div class="image-section"> <div class="flexible-widgets widget-area' . altitude_widget_area_class( 'front-page-1' ) . '"> <div class="wrap">', 'after' => '</div></div></div></div>', ) ); |
Step 2: Creating an new function and putting the above code in this function. Here is the complete code of that function. You will add this function above the genesis() function of front-page.php… Continue Reading