HI,
I'm trying to change the default spinner.gif url of ajax paged forms.
I'm using this few lines at the bottom of my functions.php theme file:
add_filter("gform_ajax_spinner_url", "spinner_url", 10, 2);
function spinner_url($image_src, $form){
return get_bloginfo('template_directory') . '/images/loading_bar.gif' ;
}
but it does not work.
any idea?