Skip to content

Instantly share code, notes, and snippets.

@stkjj
Created December 16, 2020 11:35
Show Gist options
  • Save stkjj/85dac069a41e2025372c63abea8e327e to your computer and use it in GitHub Desktop.
Save stkjj/85dac069a41e2025372c63abea8e327e to your computer and use it in GitHub Desktop.

Revisions

  1. stkjj created this gist Dec 16, 2020.
    14 changes: 14 additions & 0 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    add_filter( 'wpcf7_load_js', '__return_false' );
    add_filter( 'wpcf7_load_css', '__return_false' );

    function reregister_cf7_js() {
    if ( is_page (array(1,'kontakt'))) {
    if (function_exists( 'wpcf7_enqueue_scripts')) {
    wpcf7_enqueue_scripts();
    }
    if (function_exists( 'wpcf7_enqueue_styles')) {
    wpcf7_enqueue_styles();
    }
    }
    }
    add_action('wp_enqueue_scripts','reregister_cf7_js');