• Hi!
    I would like to move the ajax loader position : right now it is displayed after the submit input, and I would like it to be before. Is there a way to do that other than with javascript?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I have same need.

    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.

    Hi friends, is there any way we can remove this bug ajax loader? Even if I delete it, it still keeps loading. This is very annoying that we can’t use SSL properly with this bug.

    https://prntscr.com/lm06zf

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CF7 – move ajax loader’ is closed to new replies.