Skip to content
  • Home
  • Product Type
    • T Shirts
    • Hats
    • Hoodies
    • Mugs
    • Posters
  • Contact
    • Home
    • Product Type
      • T Shirts
      • Hats
      • Hoodies
      • Mugs
      • Posters
    • Contact

    DaddyOMerch

    Cart

    Item added to your cart

    View cart

    Free Shipping in the USA! 👍

    • Example product title

      Regular price $19.99 USD
      Regular price Sale price $19.99 USD
    • Example product title

      Regular price $19.99 USD
      Regular price Sale price $19.99 USD
    • Example product title

      Regular price $19.99 USD
      Regular price Sale price $19.99 USD

    Retro Americana with a Modern Vibe

    Payment methods
    • Amazon
    • American Express
    • Apple Pay
    • Discover
    • Google Pay
    • Mastercard
    • PayPal
    • Shop Pay
    • Venmo
    • Visa
    © 2025, DaddyOMerch Powered by Shopify
    • Refund policy
    • Privacy policy
    • Terms of service
    • Shipping policy
    • Choosing a selection results in a full page refresh.
    • Opens in a new window.
    document.addEventListener("DOMContentLoaded", function() { // Adjust the selector to match Spotlight's variant input (could be select or radio buttons) const variantInput = document.querySelector('select[name="id"], input[name="id"][type="radio"]'); const thumbnailSelector = '.product__media-item'; function filterThumbnails(variantId) { document.querySelectorAll(thumbnailSelector).forEach(thumb => { const variantIds = thumb.getAttribute('data-variant-ids'); if (variantIds && variantIds.split(',').map(s => s.trim()).includes(variantId)) { thumb.style.display = ''; } else { thumb.style.display = 'none'; } }); } function updateOnSelection() { const selectedVariantId = this.value; filterThumbnails(selectedVariantId); } if (variantInput) { variantInput.addEventListener('change', updateOnSelection); // Initial filter on page load filterThumbnails(variantInput.value); } else { console.warn('Variant input not found—please verify the selector for Spotlight.'); } });