Select Page
Advertisements
  1. Go to the following website and customize your spinner:  https://icons8.com/preloaders/en/circular
  2. Make your height and width: 20×20
  3. Download spinner.
  4. Upload spinner to your WordPress Media Library.
  5. 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";
}