Title: Removing breadcrumbs
Last modified: August 22, 2016

---

# Removing breadcrumbs

 *  Resolved [jublong](https://wordpress.org/support/users/jublong/)
 * (@jublong)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/)
 * Just installed Storefront and want to remove breadcrumbs from throughout the 
   site – I’ve found several PHP snippets for functions.php that remove breadcrumbs
   for generic WP and for Woothemes, but neither type change anything at all. Does
   Storefront require something else?

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

 *  [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * (@wpmudev-support2)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753178)
 * Hello jublong,
 * Thanks for your question. 🙂
 * I suggest you use a child theme [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
   or use css custom plugin like this: [https://wordpress.org/plugins/simple-custom-css/](https://wordpress.org/plugins/simple-custom-css/)
   if you will customize your theme.
 * Add the code in your child theme’s style.css or using the plugin mentioned above.
 *     ```
       .woocommerce-breadcrumb {
         display: none;
       }
       ```
   
 * Let me know if it helps! 🙂
 * Take care,
    Calvin
 *  [James Koster](https://wordpress.org/support/users/jameskoster/)
 * (@jameskoster)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753222)
 * You can also remove the markup by adding something like this to your child themes
   functions.php file:
 *     ```
       add_action( 'init', 'jk_remove_storefront_breadcrumb' );
       function jk_remove_storefront_breadcrumb() {
       remove_action( 'storefront_content_top', 'woocommerce_breadcrumb', 	10 );
       }
       ```
   
 *  Thread Starter [jublong](https://wordpress.org/support/users/jublong/)
 * (@jublong)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753386)
 * Thanks guys, that worked.
 *  [bigfig1](https://wordpress.org/support/users/bigfig1/)
 * (@bigfig1)
 * [11 years ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753454)
 * Good for me too. Thank you
 *  [Rokh](https://wordpress.org/support/users/rokh/)
 * (@rokh)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753457)
 * Great! That last one (in fucntions.php) worked for me too! (the css solution 
   did not)
 * Any ideas how to create a little extra white space above the page title now that
   the breadcrumbs are gone?
 * I use Storefront 1.4.5.
 * Thanks!
 *  [James Koster](https://wordpress.org/support/users/jameskoster/)
 * (@jameskoster)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753458)
 * You could try something like:
 *     ```
       .site-header {
       margin-bottom: 2.618em;
       }
       ```
   
 * Add to your child themes style.css file, or custom css plugin.
 *  [Rokh](https://wordpress.org/support/users/rokh/)
 * (@rokh)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753462)
 * > You could try something like:
   >     ```
   >     .site-header {
   >     margin-bottom: 2.618em;
   >     }
   >     ```
   > 
   > Add to your child themes style.css file, or custom css plugin.
 * That worked mighty fine…thanks!!

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

The topic ‘Removing breadcrumbs’ is closed to new replies.

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

 * 7 replies
 * 5 participants
 * Last reply from: [Rokh](https://wordpress.org/support/users/rokh/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/removing-breadcrumbs-4/#post-5753462)
 * Status: resolved