/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

function remove_woodmart_breadcrumbs() {
    remove_action( 'woodmart_page_title', 'woodmart_breadcrumbs_page_title', 10 ); // Try this WoodMart specific hook
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); // Keep this for WooCommerce default
}
add_action( 'after_setup_theme', 'remove_woodmart_breadcrumbs', 11 );