Title: Breadcrumb
Last modified: August 30, 2016

---

# Breadcrumb

 *  [LynJon](https://wordpress.org/support/users/lynjon/)
 * (@lynjon)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/breadcrumb-15/)
 * I’d like to have breadcrumbs enabled for my site, the problem is they are showing
   up between the menu in the header (I’m using Ubermenu) and the slider images.
   I’d like to place them above the menu. Does anyone have an idea how I can go 
   about this?
    Thanks in advance, Lynne

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

 *  Thread Starter [LynJon](https://wordpress.org/support/users/lynjon/)
 * (@lynjon)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/breadcrumb-15/#post-6674206)
 * I’m still desperately trying to find a solution for this problem. Studying the
   source code I think I need to find the file where the div breadcrumb-list is,
   remove it and then add it to the file that displays the header but I can’t find
   either. Anyone have any ideas please? The problem can be seen on [http://www.watals.info](http://www.watals.info)
   
   Thanks
 *  [Biplav](https://wordpress.org/support/users/bplv/)
 * (@bplv)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/breadcrumb-15/#post-6674415)
 * hello lynee,
    The easier solution would be to go to the themes root directory
   => inc =>catchresponsive-breadcrumb.php => find and change the code from
 *     ```
       add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
       ```
   
 * to
 *     ```
       add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 9 );
       ```
   
 * To save your personal customization please use child theme (check [ here). ](http://catchthemes.com/blog/create-child-theme-wordpress/)
 * Regards, bplv
 *  [Sakin Shrestha](https://wordpress.org/support/users/sakinshrestha/)
 * (@sakinshrestha)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/breadcrumb-15/#post-6674416)
 * Thanks bplv for your support.
 * To edit any theme files, please build child theme first. You shouldn’t edit any
   theme files directly, as when you update the theme, all your edits will be reverted
   back to original. So, to me safe always build child theme, you can download our
   sample child theme from [https://catchthemes.com/blog/create-child-theme-wordpress/](https://catchthemes.com/blog/create-child-theme-wordpress/)
 * Then you can remove breadcrumb from current position by adding the following 
   code in your child theme `functions.php` file
 *     ```
       // Remove breadcrumb from current position
       function unhook_catchresponsive_functions() {
           remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
       }
       add_action( 'init', 'unhook_catchresponsive_functions' );
       ```
   
 * Then to add breadcrumb before menu, add the following code in your child theme`
   functions.php` file
 *     ```
       //Adding breadcrumb before menu
       add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 9 );
       ```
   

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

The topic ‘Breadcrumb’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/catch-responsive/3.2.1/screenshot.
   png)
 * Catch Responsive
 * [Support Threads](https://wordpress.org/support/theme/catch-responsive/)
 * [Active Topics](https://wordpress.org/support/theme/catch-responsive/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/catch-responsive/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/catch-responsive/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Sakin Shrestha](https://wordpress.org/support/users/sakinshrestha/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/breadcrumb-15/#post-6674416)
 * Status: not resolved