Forum Replies Created

Viewing 1 replies (of 1 total)
  • I have the same need.

    This is my workaround:
    – Hide it with CSS

    CSS

    
    div.wpcf7 .ajax-loader {
    	display: none;
    }  
    

    Another option (untested)
    – Change the gif via WordPress Filter

    <?php
    // Custom CF7 loading image
    add_filter('wpcf7_ajax_loader', 'my_wpcf7_ajax_loader');
    function my_wpcf7_ajax_loader () {
    return  get_bloginfo('stylesheet_directory') . '/images/ajax-loader.gif';
    }
    ?>
    • This reply was modified 6 years, 8 months ago by uwe2019.
    • This reply was modified 6 years, 8 months ago by uwe2019.
Viewing 1 replies (of 1 total)