Protected by Recaptcha now Displayed on all Pages in the Latest Update
-
functions.php
function oiw_load_recaptcha_badge_page() { if ( !is_page( array( 'contact' ) ) ) { wp_dequeue_script('google-recaptcha'); } } add_action( 'wp_enqueue_scripts', 'oiw_load_recaptcha_badge_page' ); // Deregister Contact Form 7 JavaScript files on all pages without a form add_action( 'wp_print_scripts', 'aa_deregister_javascript', 100 ); function aa_deregister_javascript() { if ( ! is_page( 'contact' ) ) { wp_deregister_script( 'contact-form-7' ); } }
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Protected by Recaptcha now Displayed on all Pages in the Latest Update’ is closed to new replies.