About Honey Bee

.

Misse Daniel

Owner

Misse Daniel began her career in event planning working for a nonprofit.  After successfully coordinating many events and galas, Misse launched her own company, Honey Bee Weddings and Events, in 2007. With over 500 weddings and 100 nonprofit events, Misse loves event planning!


Misse has appeared on The New York Times, WCIU, Modern Luxury Weddings Magazine, Chicago Bride Magazine , Style Me Pretty, 100 Layer Cake, and Elizabeth Anne Designs. She also has spoken at a few colleges including at Loyola University Chicago and at the University of Chicago Women in Business conference, and teaches Special Events Planning at Loyola University Chicago. Misse and Honey Bee Weddings fully support organizations including the Junior League Chicago, and the Girl Scouts of Greater Chicago.

Sustainable Luxury

Misse is proud to sit on the board of the Green Wedding Alliance, Chicago’s collaborate network of sustainable event professionals. Honey Bee Weddings makes efforts to keep all aspects of any event eco-conscious. At her home office, Misse composts, and only prints from home when necessary, taking 15 months to use a package of printer paper. Every paper item is either recycled or composted responsibly, and Honey Bee Weddings offers card boxes, votives and other day-of rentals to reduce the environmental impact of your big day.

// Phone number validation for Jetpack contact forms document.addEventListener(‘DOMContentLoaded’, function() { // Find all Jetpack contact forms const jetpackForms = document.querySelectorAll(‘.wp-block-jetpack-contact-form form, .contact-form form’); jetpackForms.forEach(function(form) { form.addEventListener(‘submit’, function(e) { // Look for phone input fields (common names/IDs used by Jetpack) const phoneInputs = form.querySelectorAll(‘input[name*=”phone”], input[id*=”phone”], input[type=”tel”], input[placeholder*=”phone” i]’); let isValid = true; phoneInputs.forEach(function(phoneInput) { const phoneValue = phoneInput.value.replace(/\D/g, ”); // Remove non-digits // Check if phone number has exactly 10 digits if (phoneValue.length > 0 && phoneValue.length !== 10) { e.preventDefault(); // Stop form submission isValid = false; // Remove any existing error message const existingError = phoneInput.parentNode.querySelector(‘.phone-error’); if (existingError) { existingError.remove(); } // Add error styling phoneInput.style.borderColor = ‘#ff0000’; phoneInput.style.borderWidth = ‘2px’; // Create and show error message const errorMsg = document.createElement(‘div’); errorMsg.className = ‘phone-error’; errorMsg.style.color = ‘#ff0000′; errorMsg.style.fontSize = ’14px’; errorMsg.style.marginTop = ‘5px’; errorMsg.textContent = ‘Please enter a valid 10-digit phone number.’; phoneInput.parentNode.appendChild(errorMsg); // Focus on the invalid field phoneInput.focus(); } }); if (!isValid) { // Scroll to first error if form is long const firstError = form.querySelector(‘.phone-error’); if (firstError) { firstError.scrollIntoView({ behavior: ‘smooth’, block: ‘center’ }); } } }); // Clear error styling when user starts typing const phoneInputs = form.querySelectorAll(‘input[name*=”phone”], input[id*=”phone”], input[type=”tel”], input[placeholder*=”phone” i]’); phoneInputs.forEach(function(phoneInput) { phoneInput.addEventListener(‘input’, function() { // Clear error styling this.style.borderColor = ”; this.style.borderWidth = ”; // Remove error message const errorMsg = this.parentNode.querySelector(‘.phone-error’); if (errorMsg) { errorMsg.remove(); } }); }); }); });