Title: Home button before every menu
Last modified: August 22, 2016

---

# Home button before every menu

 *  Resolved [Sven de Bie](https://wordpress.org/support/users/debiesven/)
 * (@debiesven)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/home-button-before-every-menu/)
 * The Home icon is shown before every menu, also when using custom menu’s in the
   widgets: [http://www.veterstore.nl/](http://www.veterstore.nl/)
 * I only want the home icon shown in the main navigation and not in de custom menu’s.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [Sven de Bie](https://wordpress.org/support/users/debiesven/)
 * (@debiesven)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/home-button-before-every-menu/#post-5175005)
 *     ```
       function esell_home_link($items, $args) {
   
       	// Only show home icon for main navigation.
       	if($args->theme_location != 'esell-navigation'){
       		return $items;
       	}
   
       if (is_front_page())
       ...
       ```
   
 * This is the solution. I can’t get it to commit to the svn.
 *  Theme Author [Sandy](https://wordpress.org/support/users/sandy786/)
 * (@sandy786)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/home-button-before-every-menu/#post-5175029)
 * You can edit menu from dashboard and save it but on top menu home icon is default.
 * Also to hide Home icons use CSS code like
 *     ```
       #navigation .home-icon img {
       display:none;
       }
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Home button before every menu’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/esell/1.7/screenshot.png)
 * eSell
 * [Support Threads](https://wordpress.org/support/theme/esell/)
 * [Active Topics](https://wordpress.org/support/theme/esell/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/esell/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/esell/reviews/)

## Tags

 * [main navigation](https://wordpress.org/support/topic-tag/main-navigation/)

 * 2 replies
 * 2 participants
 * Last reply from: [Sandy](https://wordpress.org/support/users/sandy786/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/home-button-before-every-menu/#post-5175029)
 * Status: resolved