Skip to content

Instantly share code, notes, and snippets.

@8lane
Created January 5, 2014 17:33
Show Gist options
  • Save 8lane/8271205 to your computer and use it in GitHub Desktop.
Save 8lane/8271205 to your computer and use it in GitHub Desktop.
Custom loading.gif for Contact Form 7 Wordpress Plugin
<?php
// :: Custom ajax loader for Contact Form 7 ::
add_filter('wpcf7_ajax_loader', 'my_wpcf7_ajax_loader');
function my_wpcf7_ajax_loader () {
return network_home_url() . '/assets/themes/ips-helpdesk/images/ajax-loader.gif';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment