// Haz que /tienda-flores/ use el loop/plantilla de tienda y filtre a la cat 18
add_action('template_redirect', function () {
if (is_page('tienda-flores')) {
add_filter('woocommerce_is_shop', '__return_true');
}
});
add_action('woocommerce_product_query', function ($q) {
if (is_page('tienda-flores')) {
$tax_query = (array) $q->get('tax_query');
$tax_query[] = array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => array(18),
'operator' => 'IN',
'include_children' => true,
);
$q->set('tax_query', $tax_query);
}
}, 20);