0

Have questions or need a custom quote? We're here to help.

Whether you're planning an event, branding your space, or just want to bring your idea to life, we’d love to hear from you.

943 W Taft Vineland Rd Unit F 

Orlando, FL

Phone :  (407) 881.8063

Email : info@negagraphicprinting.com
www.negagraphicprinting.com

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); });