Amanda Robbins

Amanda Robbins was born and raised in Wilmington, NC. She is the youngest of 3 and the only daughter to her father, a retired pastor, and her mother who is a teacher. She resides in Wilmington with her husband, who is a sales manager with Strawbridge Studios, and their two dogs: Penny and Jaba. She studied Photography and Graphic design at The Academy of Art University and has over 20 years of photography experience. Amanda has been with Strawbridge for over 8 years working as a Photographer, Sales Manager and now a Yearbook Account Executive. She has a passion for photography, leading, and helping others. Amanda knows every school has their own story, different goals and expectations. She works closely with each school to set up a yearbook program personalized to their needs. She builds relationships within the school and facilitates the creation of the yearbook from start to finish. She enjoys working with advisers to create a product that students will love and carry with them through their lifetime.

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