Puede que te interese…
¡Tu carrito está actualmente vacío!
Nuevo en la tienda
-
Sudadera Logo ‘R’ de La Raíz38,00 €
-
Sudadera Logo La Raíz38,00 €
-
Camiseta Logo La Raiz20,00 €
-
Sudadera Cocktail35,00 €
jQuery(document).ready(function($) { // Función para actualizar el texto de un elemento solo si coincide con el texto actual function updateTextIfMatch(selector, currentText, newText) { const element = $(selector); if (element.text().trim() === currentText) { element.text(newText); } }
// Actualizar textos específicos $(".wc-block-components-order-summary__button-text").text("Resumen del pedido"); $(".wc-block-cart-items__header-image span").text("Producto"); $(".wc-block-components-address-form__address_2-toggle").text("+ Añadir apartamento, habitación, escalera, etc.");
// Usar la función para verificar y actualizar texto en elementos específicos updateTextIfMatch(".wc-block-components-totals-coupon .wc-block-components-panel__button", "Add a coupon", "Añadir cupón"); updateTextIfMatch(".wc-block-components-totals-item__value em", "No shipping options available", "No hay opciones de envío disponible"); updateTextIfMatch("#wc-block-components-totals-shipping__change-address__link", "Add a shipping address", "Añadir una dirección de envío");
// Cambiar el texto de todos los botones de eliminar elemento $(".wc-block-cart-item__remove-link").each(function() { if ($(this).text().trim() === "Remove item") { $(this).text("Eliminar elemento"); } });
// Actualizar "Enviar a..." en la dirección de envío let starterText = $(".wc-block-components-shipping-address").text().trim(); const textWords = starterText.split(" "); if (textWords.length > 1) { textWords[0] = "Enviar"; textWords[1] = "a"; starterText = textWords.join(" "); $(".wc-block-components-shipping-address").text(starterText); }
// Cambiar texto de botón de producto sin stock $(".product_type_variable.add_to_cart_button").each(function() { if ($(this).text().trim() === "No stock") { $(this).text("Comprar"); } });
const intervalId = setInterval(() => { const targetElement = $("#wc-block-components-totals-coupon__form .wc-block-components-button span"); if (targetElement.text() == 'Apply') { targetElement.text('Aplicar') clearInterval(intervalId); } }, 100); // Verifica cada 100 ms
});