0

Baby Safari Banner

Non-returnable

High-quality custom vinyl banners available in multiple sizes. Optional pole pocket available

  • Select Size
  • Select Finish
  • Quantity
Price
$40.00 - $500.00
Baby Safari Banner
Baby Safari Banner
Baby Safari Banner
Baby Safari Banner
Product Details
Items have been added to cart.
One or more items could not be added to cart due to certain restrictions.
Added to cart
- There was an error adding to cart. Please try again.
Quantity updated
- An error occurred. Please try again later.
Deleted from cart
- Can't delete this product from the cart at the moment. Please try again later.
// --- OCULTAR CAMPOS DE ENVÍO SI PICK-UP ESTÁ SELECCIONADO --- document.addEventListener("DOMContentLoaded", function () { function updateShippingVisibility() { const shippingOptions = document.querySelectorAll("input[name='shippingMethod']"); const shippingFields = document.querySelectorAll( "input[name='shippingAddress.firstName'], input[name='shippingAddress.lastName'], textarea[name='shippingAddress.address1'], input[name='shippingAddress.city'], select[name='shippingAddress.stateOrProvince'], input[name='shippingAddress.postalCode'], input[name='shippingAddress.phone']" ); let isPickup = false; shippingOptions.forEach(opt => { if (opt.checked && opt.value.toLowerCase().includes("pick")) { isPickup = true; } }); shippingFields.forEach(field => { const fieldWrapper = field.closest("div"); if (fieldWrapper) { fieldWrapper.style.display = isPickup ? "none" : "block"; } }); // Mensaje opcional let notice = document.getElementById("pickupNotice"); if (!notice) { notice = document.createElement("p"); notice.id = "pickupNotice"; notice.style.color = "green"; notice.style.fontWeight = "bold"; document.querySelector(".shipping-address")?.prepend(notice); } notice.innerText = isPickup ? "📍 You selected Store Pickup. Shipping address is not required." : ""; } const observer = new MutationObserver(updateShippingVisibility); observer.observe(document.body, { childList: true, subtree: true }); document.addEventListener("change", updateShippingVisibility); setTimeout(updateShippingVisibility, 500); });