/*
 Theme Name: Storefront Child
 Template: storefront
 Version: 1.0
*/
<?php
// Cargar estilos del tema padre
add_action('wp_enqueue_scripts', function() {
    wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');
});

// Eliminar breadcrumb de Storefront
add_action('init', function() {
    remove_action('storefront_before_content', 'storefront_breadcrumb', 10);
});

// Eliminar breadcrumb de WooCommerce
add_action('init', function() {
    remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20);
});
