Custom Gravity Forms AJAX Loader

Upload a custom Loader icon animation

Add the following code to your Theme’s functions.php file (hopefully you use a Child theme). 

Add a Filter to gform_ajax_spinner_url

Add the following code to your Theme’s functions.php file (hopefully you use a Child theme). 

				
					/* Change Gravity Forms default ajax spinner */
add_filter( 'gform_ajax_spinner_url', 'spinner_url', 10, 2 );
function spinner_url( $image_src, $form ) {
    // Your custom ajax spinner URL here
    return  '/wp-content/uploads/2022/02/loader.svg';
}
				
			

Add this Custom CSS to adjust loader position

				
					.gform_ajax_spinner {
	max-width:100%;
	width: 100px;
	display:block;
	margin: 0 auto;
}

				
			

Message Us

Name