Hi,
In my case submission messages and verification checks seems to work fine.
I’ve just noticed an issue with the loading GIF that no longer displays (“ajax-loader” class is now used for a span with background image instead of directly an image).
The dirty-fix I found was to restore original CF7 styles by deactivating “cf7bs_enqueue_styles” action in “modifications.php” (line 97)…
function cf7bs_enqueue_styles() {
wp_dequeue_style( 'contact-form-7' );
}
// add_action( 'wpcf7_enqueue_styles', 'cf7bs_enqueue_styles' );
…then searching/replacing these lines in plugin files:
$( this ).find( 'img.ajax-loader' ).css({ visibility: 'hidden' });
by
$( this ).find( '.ajax-loader' ).removeClass( 'is-active' );
(3 occurences)
i(this).find("img.ajax-loader").css({visibility:"hidden"})
by
i(this).find(".ajax-loader").removeClass("is-active")
(1 occurence)
a(this).find("img.ajax-loader").css({visibility:"hidden"})
by
a(this).find(".ajax-loader").removeClass("is-active")
(1 occurence)
I hope it can help.
-
This reply was modified 8 years, 2 months ago by
Rumores.