you have several options..
A: Create a new page template for your home page
Create a home.php file in your child theme directory, of course without the navigation(wish is included in (wp_head)
B: Unregister the Primary and Secundary Nav
Open your Child theme functions.php file and add this code at the end of the file, just before the closing ?> if there is any. (DO NOT LEAVE ANY BLANK LINE/SPACE after the closing ?> or your code.)
// Unregister Menu
add_action('genesis_after_header', 'remove_nav_bar');
function remove_nav_bars() {
if (is_home()){
remove_action('genesis_after_header', 'genesis_do_nav');
}
}
C: Hiding the menu by CSS
in your style.css
/* Hide Navigation Menu in home page*/
.home #nav, .home #subnav {
display:none;
}
You can use any of this options, of course, option C is the easiest way.
Related Posts:
- How to add code just below opening body tag in Genesis framework
- Adding ads after a certain number of paragraphs within Genesis themework
- Editing or filtering the output of the Genesis navigation
- How to add specific menu on a specific page or pages
- How do I turn a 404 page into an automatic search with the info from the url?
- Second nav is merged with the first in mobile
- WordPress Hide Show Content script and activate/deactivate script on screensize
- Genesis menu position change
- Is it possible to roll back to a previous customization of Genesis?
- How can I eliminate the inline styles included by default with the Genesis framewrok?
- Portfolio-template won’t show items
- Move Archive Title to Entry Title – Genesis
- Modify Genesis Custom Header CSS
- Notice: Undefined variable: thumbnail [closed]
- Issue echoing the site’s title in Genesis child theme
- Passing a Variable to a Function Hooked to Genesis Entry Content
- Genesis loading of html5shiv for IE8
- Responsive menu on genesis theme [closed]
- Multiple loops in Genesis
- How to enable full column width in Genesis layout options
- Genesis framework : how to display the primary sidebar manually?
- Hard-coding a shortcode as the last menu item in primary navigation?
- How to create and set a separate template file for articles in Genesis framework? (WordPress)
- genesis grid loop only showing one column
- Plugin for user comments, star ratings, badge, activity
- Insert custom metatag in all the internal pages of the site, less in the homepage
- Cropping a thumbnail with a Genesis child theme
- Genesis themes: how do alter the markup of post meta on archive pages? [closed]
- Menu disappears with custom post type link
- Getting Genesis Entry Headers Back on Post Tiltes
- Genesis page template with Powerpress
- New Genesis child theme or revise current Genesis child theme [closed]
- How to change title “Search Results for:….” in search results page of genesis?
- Why is my hamburger menu not shown? [closed]
- I want my homepage navbar to have different styling to the rest of my site, how can I do this?
- How to display post title on top of image with Genesis Featured Posts
- How to create a page template that display posts with a certain category in the Genesis Framework?
- Inserting a shortcode into a genesis menu?
- Genesis Style Selector causes PHP warning [closed]
- How do i add logo in wordpress studiopress (glam theme)?
- add_menu_page() with different name for first submenu item
- Display a portion/ branch of the menu tree using wp_nav_menu()
- Menu items description? Custom Walker for wp_nav_menu()
- How to create an automatic MultiColoumn MegaMenu with Categories WordPress
- Programmatically add a Navigation menu and menu items
- Any docs for wp_nav_menu’s “items_wrap” argument?
- How to add a custom field in the advanced menu properties?
- Adding a Custom Post Type into the menu screen
- Customizing Only a Specific Menu using the “wp_nav_menu_items” Hook?
- Changing the Order of Admin Menu Sections?
- How make top level menu item not have link, but have sub-menus that are linked?
- Highlighting wp_nav_menu() Ancestor Class w/o Children in Nav Structure?
- How to add posts to custom menus?
- Add ‘has_children’ class to parent li when modifying Walker_Nav_Menu
- Get WP Navigation Menu from REST API V2
- How to Hard Code Custom menu items
- Remove wrapping div and ul from output of wp_nav_menu
- How to add a Custom Link to a Menu with a URL that is relative to the blog URL
- How to use wp_nav_menu to create a select menu dropdown?
- How do I remove UL on wp_nav_menu?
- Retrieving a list of menu items in an array
- WordPress default menu in database
- How to add a data attribute to a WordPress menu item
- Adding an Arbitrary Link to the Admin Menu?
- Dynamically exclude menu items from wp_nav_menu
- Placing a Custom Post Type Menu Above the Posts Menu Using menu_position?
- Add “Logout” link to navigation menu
- wp_nav_menu(), how to change class?
- Display Menu Name using wp_nav_menu
- Error: Declaration of MyClass::start_lvl() should be compatible with that of Walker_Nav_Menu::start_lvl()
- Split up wp_nav_menu with custom walker
- Adding first / last CSS classes to menus
- Removing container from wp_nav_menu not working
- Custom Nav walker display current menu item children, or siblings on no children
- wp_nav_menu: show menu only if one exists, otherwise show nothing
- Is there an easy way to replace a custom menu link with a page or post?
- Display current category title on category page
- Convert output of nav_menu items into a tree-like multidimensional array
- Get page IDs from nav items
- How to add sub-menu to a menu generated by wp_nav_menu by using plugin
- Check if add_menu_page exists or not
- Adding a menu item for a Custom Post Archive
- Add a custom walker to a menu created in a widget
- Using a menu walker add a custom item at the end of the menu’s items
- Add settings to menu items in the Customizer
- How can I display a menu on certain pages only?
- Apply the_title() filter in post & page title, but not in menu title
- Get the ID of the page a menu item links to?
- Add container to nav_menu sub menu
- wp_get_nav_menu_items() not working with slug
- How to get current-menu-item title as variable?
- Error “Trying to get property of non-object” with Custom Walker for wp_nav_menu
- Add Class to Specific Link in Custom Menu
- Remove a menu item in menu
- Adding an Archive of Posts to the Navigation Menu in WordPress 3.0
- Adding custom post type archives to a WordPress menu
- Generate a Menu that Displays Child Pages using wp_list_pages() with the New Menu Functionality in WordPress 3.0?
- Mega Menu Walker
- Change the_title() of a page dynamically
- How do I get the name of a menu in WordPress?