✦ Verified product
Breeding Certificates
USD 50.00
Savage Sires
Verified independent store
→
{%- comment -%} Breeding Certificate extra fields {%- endcomment -%} {%- if product.handle == 'breeding-certificate' or template.name == 'breeding-certificate' -%} Boar’s Name* Sem
en Ship Date* Purchaser’s Name* Purchaser’s Herdmark Comments // Optional: client-side guard to ensure date isn’t in the future and fields present (function() { const form = document.currentScript.closest('form'); if(!form) return; form.addEventListener('submit', function(e){ const boar = form.querySelector('#prop-boar-name'); const ship = form.querySelector('#prop-ship-date'); const purchaser = form.querySelector('#prop-purchaser-name'); if(!boar.value.trim() || !purchaser.value.trim() || !ship.value){ e.preventDefault(); alert('Please complete Boar’s Name, Semen Ship Date, and Purchaser’s Name.'); return false; } const today = new Date(); today.setHours(0,0,0,0); const shipDate = new Date(ship.value); if (shipDate > today) { e.preventDefault(); alert('Semen Ship Date cannot be in the future.'); return false; } }, {passive:false}); })(); {%- endif -%}