Remove the breadcrumb

The code snippets below should be pasted into your child theme's functions.php file.

Here is how to remove the site breadcrumb.

// Remove the breadcrumb.
add_filter( 'beans_pre_load_fragment_breadcrumb', '__return_true' );

The code snippet above simple prevent the code which output the breadcrumb from loading.