Nursing Cover for Breastfeeding – Soft, Breathable Feeding Apron for Mom, Multi-Use Feeding Cover & Scarf-Elephant Print
*** This is a hidden product used by Product Customizer. Please do not modify or delete! ***
In order to add priced options to the cart, this product must be Visible in the
Online Store and set to Don't Track Inventory.
Modifying these settings may prevent your shoppers from checking out.
You may safely update the default Title and Image to better suit your shop.
For questions, please
contact us
.
function filterVariantImages(selectedTitle) {
const allImages = document.querySelectorAll('.variant-image');
allImages.forEach(image => {
const altText = image.getAttribute('data-alt');
if (!altText || altText.trim() === selectedTitle.trim()) {
image.style.display = 'block';
} else {
image.style.display = 'none';
}
});
}
document.addEventListener("DOMContentLoaded", function() {
const variantSelect = document.querySelector('#product-selectors');
if (!variantSelect) return;
// Run once on page load
const initialText = variantSelect.options[variantSelect.selectedIndex].text.split(' - ')[0];
filterVariantImages(initialText);
// Update on change
variantSelect.addEventListener('change', function() {
const selectedText = this.options[this.selectedIndex].text.split(' - ')[0];
filterVariantImages(selectedText);
});
});