Actually you shouldn’t modify any files of core framework. I suggest you to go with child theme, create new function.php and add the hook. To remove breadcrumb, go with following:
// Removing Breadcrumbs
function remove_breadcrumb() {
remove_action(‘woo_loop_before’,’woo_breadcrumbs’);
}
add_action(‘init’, ‘remove_breadcrumb’);