Ir al contenido
Inicio
Sobre Bc
Tratamientos
Retiros
Programas
Creamos
Shop
Contacto
Inicio
Sobre Bc
Tratamientos
Retiros
Programas
Creamos
Shop
Contacto
Inicio
/ Tienda
Tienda
No se han encontrado productos que coincidan con tu selección.
0
Añadido al carrito
Cerrar carrito
Tu carrito está vacío
0
Visita nuestra tienda para ver lo que está disponible
Scroll al inicio
add_filter('wp_nav_menu', 'bcw_product_menu_html_by_bc_lang_safe', 999, 2); function bcw_product_menu_html_by_bc_lang_safe($nav_menu, $args) { if (is_admin()) { return $nav_menu; } $lang = bcw_product_menu_get_bc_lang_safe(); if (!$lang) { return $nav_menu; } $menu = bcw_product_menu_map_safe(); if (empty($menu[$lang])) { return $nav_menu; } $site_url = home_url(); $nav_menu = preg_replace_callback( '#
]*href=(["\'])(.*?)\2[^>]*)>(.*?)
#is', function($m) use ($lang, $menu, $site_url) { $attrs = $m[1]; $href = html_entity_decode($m[3], ENT_QUOTES, 'UTF-8'); $label = $m[4]; /* NO tocar Polylang / selector idioma */ $blocked = array( 'pll-parent-menu-item', 'lang-item', 'lang-item-current', 'language-switcher', 'polylang', 'wpml-ls', 'menu-item-language', 'gt_switcher', 'gtranslate' ); foreach ($blocked as $block) { if (stripos($attrs, $block) !== false || stripos($label, $block) !== false) { return $m[0]; } } $path = bcw_product_menu_path_safe($href); if (!$path) { return $m[0]; } if (empty($menu[$lang][$path])) { return $m[0]; } $new_title = esc_html($menu[$lang][$path]['title']); $new_href = esc_url(home_url($menu[$lang][$path]['url'])); $new_attrs = preg_replace( '#href=(["\'])(.*?)\1#i', 'href="' . $new_href . '"', $attrs ); return '
' . $new_title . '
'; }, $nav_menu ); return $nav_menu; } function bcw_product_menu_get_bc_lang_safe() { if (empty($_GET['bc_lang'])) { return ''; } $lang = strtolower(sanitize_key(wp_unslash($_GET['bc_lang']))); if (!in_array($lang, array('es', 'en', 'fr'), true)) { return ''; } $uri = isset($_SERVER['REQUEST_URI']) ? strtolower(sanitize_text_field(wp_unslash($_SERVER['REQUEST_URI']))) : ''; $is_product_url = ( strpos($uri, '/producto/') !== false || strpos($uri, '/product/') !== false ); $is_product_wp = false; if (function_exists('is_product') && is_product()) { $is_product_wp = true; } if (function_exists('is_singular') && is_singular('product')) { $is_product_wp = true; } if (!$is_product_url && !$is_product_wp) { return ''; } return $lang; } function bcw_product_menu_path_safe($href) { $href = trim((string) $href); if ($href === '') { return ''; } $path = wp_parse_url($href, PHP_URL_PATH); if (!$path) { $path = '/'; } $path = strtolower($path); $path = preg_replace('#/+#', '/', $path); if ($path !== '/' && substr($path, -1) !== '/') { $path .= '/'; } return $path; } function bcw_product_menu_map_safe() { return array( 'es' => array( '/' => array( 'title' => 'Inicio', 'url' => '/es/home/' ), '/about-bc/' => array( 'title' => 'Sobre BC', 'url' => '/es/about-bc/' ), '/treatments/' => array( 'title' => 'Tratamientos', 'url' => '/es/tratamientos/' ), '/programs/' => array( 'title' => 'Programas', 'url' => '/es/programas/' ), '/retreats/' => array( 'title' => 'Retiros', 'url' => '/es/retiros/' ), '/shop-en/' => array( 'title' => 'Tienda', 'url' => '/es/shop-es/' ), '/shop/' => array( 'title' => 'Tienda', 'url' => '/es/shop-es/' ), '/we-create/' => array( 'title' => 'Creamos', 'url' => '/es/we-create/' ), '/contact/' => array( 'title' => 'Contacto', 'url' => '/es/contacto/' ) ), 'fr' => array( '/' => array( 'title' => 'Accueil', 'url' => '/fr/home-francais/' ), '/about-bc/' => array( 'title' => 'À propos', 'url' => '/fr/about-bc-fr/' ), '/treatments/' => array( 'title' => 'Traitements', 'url' => '/fr/traitements/' ), '/programs/' => array( 'title' => 'Programmes', 'url' => '/fr/programmes/' ), '/retreats/' => array( 'title' => 'Retraites', 'url' => '/fr/retraites/' ), '/shop-en/' => array( 'title' => 'Boutique', 'url' => '/fr/shop-fr/' ), '/shop/' => array( 'title' => 'Boutique', 'url' => '/fr/shop-fr/' ), '/we-create/' => array( 'title' => 'Nous créons', 'url' => '/fr/we-create-fr/' ), '/contact/' => array( 'title' => 'Contact', 'url' => '/fr/contact-fr/' ) ), 'en' => array( '/es/home/' => array( 'title' => 'Home', 'url' => '/' ), '/es/about-bc/' => array( 'title' => 'About bc', 'url' => '/about-bc/' ), '/es/tratamientos/' => array( 'title' => 'Treatments', 'url' => '/treatments/' ), '/es/programas/' => array( 'title' => 'Programs', 'url' => '/programs/' ), '/es/retiros/' => array( 'title' => 'Retreats', 'url' => '/retreats/' ), '/es/shop-es/' => array( 'title' => 'Shop', 'url' => '/shop-en/' ), '/es/we-create/' => array( 'title' => 'We create', 'url' => '/we-create/' ), '/es/contacto/' => array( 'title' => 'Contact', 'url' => '/contact/' ), '/fr/home-francais/' => array( 'title' => 'Home', 'url' => '/' ), '/fr/about-bc-fr/' => array( 'title' => 'About bc', 'url' => '/about-bc/' ), '/fr/traitements/' => array( 'title' => 'Treatments', 'url' => '/treatments/' ), '/fr/programmes/' => array( 'title' => 'Programs', 'url' => '/programs/' ), '/fr/retraites/' => array( 'title' => 'Retreats', 'url' => '/retreats/' ), '/fr/shop-fr/' => array( 'title' => 'Shop', 'url' => '/shop-en/' ), '/fr/we-create-fr/' => array( 'title' => 'We create', 'url' => '/we-create/' ), '/fr/contact-fr/' => array( 'title' => 'Contact', 'url' => '/contact/' ) ) ); }