Advertisements
- Go to the following website and customize your spinner: https://icons8.com/preloaders/en/circular
- Make your height and width: 20×20
- Download spinner.
- Upload spinner to your WordPress Media Library.
- Add the following code to your functions.php file with the relative file pathway to your new spinner:
add_filter("gform_ajax_spinner_url", "spinner_url", 10, 2);
function spinner_url($image_src, $form) {
return "/wp-content/uploads/2020/12/customspinner.gif";
}