This metal wall art decoration is made of iron and features animal designs. It is suitable for various settings such as homes, public places, offices, religious spaces, and hospitality establishments. Measuring 30 * 25cm, it has a modern and minimalist style and comes with one wall sticker.
/* Ocultar el botón de adición rápida en el catálogo para Ecuador y Colombia */
body[data-market="EC"] #product-grid .product-card__quick-buy,
body[data-market="CO"] #product-grid .product-card__quick-buy {
display: none !important;
}
/* Ocultar el botón de Omnisend en el catálogo y en la página de producto para Ecuador y Colombia */
body[data-market="EC"] #omnisend-form-675da4170822a0124130ccef-teaser-btn,
body[data-market="CO"] #omnisend-form-675da4170822a0124130ccef-teaser-btn {
display: none !important;
}
Este producto aún no tiene reseñas.
You may also like
FREE SHIPPING
Get your favorite home decor delivered for FREE! No minimum order required. Shop today and let us handle the shipping, so you can focus on creating the perfect space.
CUSTOMER SERVICE
At Essenza Living, we're committed to providing you with an exceptional shopping experience. Our customer service team is here to assist you every step of the way, from selecting the perfect decor to answering any questions you may have.
REFER A FRIEND
Share the joy of beautiful home decor with your friends, and get rewarded! When you refer a friend to Essenza Living, both of you will enjoy exclusive benefits.
SECURE PAYMENT
Shop with confidence at Essenza Living! We offer secure payment options to ensure your personal and financial information is always protected.
// Código para bloquear el popup de Omnisend para usuarios de Argentina, Ecuador y Colombia
(function() {
var blockCountries = ['EC', 'AR', 'CO']; // Códigos de país: Ecuador (EC), Argentina (AR), Colombia (CO)
// Usamos ipinfo.io para obtener la ubicación del usuario (necesitas una API key)
var api_url = 'https://ipinfo.io?token=TU_API_KEY'; // Sustituye 'TU_API_KEY' por tu API Key
// Función para verificar la ubicación del usuario
function checkLocationAndHidePopup(data) {
var countryCode = data.country; // Obtiene el código de país del usuario
if (blockCountries.includes(countryCode)) {
// Espera a que el popup de Omnisend cargue
var omnisenPopup = document.querySelector('.omnisend-popup'); // Asegúrate de que esta clase sea la correcta
if (omnisenPopup) {
omnisenPopup.style.display = 'none'; // Oculta el popup
}
}
}
// Realiza la solicitud para obtener la geolocalización
fetch(api_url)
.then(response => response.json())
.then(checkLocationAndHidePopup)
.catch(error => console.log('Error al obtener la geolocalización:', error));
})();