Timothy J. Shaver

Tim represents Strawbridge Studios as the Territory Manager for Austin, Texas.  He has been with Strawbridge Studios for 7 years and loves having a career that allows him to make people smile every day.  One of his favorite parts of the job is the ever-changing daily schedule. From dressing up for a District presentation with a Superintendent to capturing a priceless expression from a Kindergartener, every day is different.  He and his wife recently had their first child, Levi James, in January 2018 and could not be more thrilled!  They love the outdoors and cannot wait for the camping trips to begin when Levi and his cousins get a little older.

Scroll to Top
Contact Representative
Preferred Contact Method
CC:
// Function to inject the reCAPTCHA token function injectWPFormsRecaptchaToken() { if (typeof grecaptcha === 'undefined' || typeof wpforms_recaptcha === 'undefined') { return; } grecaptcha.ready(function() { grecaptcha.execute(wpforms_recaptcha.site_key, { action: 'wpforms' }) .then(function(token) { var field = jQuery('input[name="wpforms[recaptcha]"]'); if (field.length) { field.val(token); console.log('WPForms reCAPTCHA token injected:', token.substring(0, 20) + '...'); } else { console.log('WPForms reCAPTCHA field not found'); } }) .catch(function(err) { console.log('reCAPTCHA execute error:', err); }); }); } // Trigger 1 - Elementor popup event jQuery(document).on('elementor/popup/show', function() { console.log('Elementor popup opened, injecting token...'); // Small delay to ensure popup DOM is fully rendered setTimeout(injectWPFormsRecaptchaToken, 500); }); // Trigger 2 - Fallback: watch for the popup becoming visible var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.target.id === 'elementor-popup-modal-3596' && mutation.target.style.display !== 'none') { console.log('Popup visibility change detected, injecting token...'); setTimeout(injectWPFormsRecaptchaToken, 500); } }); }); jQuery(document).ready(function() { var popupEl = document.getElementById('elementor-popup-modal-3596'); if (popupEl) { observer.observe(popupEl, { attributes: true, attributeFilter: ['style', 'class'] }); console.log('Popup observer attached'); } else { console.log('Popup element not found for observer'); } });