• I need remove this from homepage.

    /recaptcha__en.js

    I was try scripts from google, like:

    if (!function_exists('rc_dequeue_scripts_styles')) {
    	function rc_dequeue_scripts_styles() {
    	if ( WPCF7_LOAD_JS && WPCF7_LOAD_CSS ) {
    	global $post;
    	if ( !strpos($post->post_content, '[contact-form-7') ) {
    	wp_dequeue_script('contact-form-7');
    	wp_dequeue_style('contact-form-7');
    	}
    	}
    	}
    	add_action( 'wp_enqueue_scripts', 'rc_dequeue_scripts_styles' );
    	}
    
    OR this one:
    
    //Stop loading Contact From 7 CSS and Javascript on all pages.
    if( is_singular () ) {
    	$post = get_post ();
    	if( has_shortcode( $post -> post_content, 'contact-form-7' ) ) {
    		$check_cf7 = true;
    	}
    }
    if( !$check_cf7 ) {
    	wp_dequeue_script( 'contact-form-7' );
    	wp_dequeue_style ( 'contact-form-7' );
    }
    function wps_contact_form_7_check_dequeue() {
    //Set to false to be able to check against something
    $check_cf7 = false;
    // Page ID, title, slug, or array of such.
    // if ( is_page( array( 37, 'contact-us', 'Contact US' ) ) ) {
    // if ( is_page( 'contact-us' ) ) {
    if ( is_page( array( 213, 'kontakt-z-nami', 'Sample Page' ) ) ) {
    		$check_cf7 = true;
    }
    //so therefore dequeue only if is false 
    if ( !$check_cf7 ) {
    	wp_dequeue_script ( 'contact-form-7' );
    	wp_dequeue_style ( 'contact-form-7' );
    }
    }
    add_action( 'wp_enqueue_scripts', 'wps_contact_form_7_check_dequeue', 77 );
    

    But not working. Help.

    • This topic was modified 4 years, 5 months ago by David.
    • This topic was modified 4 years, 5 months ago by David.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘How remove Contact Form ReCapchta V3 from homepage’ is closed to new replies.