Greg Pabers

After graduating from ECU with a B.S. in Education in 1981, Greg became a high school teacher. He was also an Assistant Football and Head Wrestling Coach for 12 years at 2 different high schools in N.C. In the summer of 1992, Greg met Ken Strawbridge who offered him a job by saying, “You would be great at this.” Greg says he was told, “This was the best kept secret” by Mr. Strawbridge. 26 years later, Greg is a Regional Manger overseeing 400+ accounts in NC. He is very grateful to Ken Strawbridge for the opportunity he has been given. He believes Strawbridge Studios is truly an awesome company to work for. He often tells others, “If this was Strawbridge Ditch Digging Company, he would want to be a ditch digger.” Greg truly has a passion for photography and for making memories in schools. He lives in Wilmington, North Carolina with his wife, Laurie, who also works with Strawbridge in yearbook sales. They enjoy boating and living the coastal way of life. Greg has 2 daughters, Morgan, who lives in Charleston, and Jentry, who also lives in Wilmington.

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'); } });