Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
contact-form-7
/
modules
:
jetpack.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php add_action( 'wpcf7_admin_notices', 'wpcf7_jetpack_admin_notices' ); function wpcf7_jetpack_admin_notices() { global $wpdb; if ( ! class_exists( 'Jetpack' ) || ! Jetpack::is_module( 'contact-form' ) || ! in_array( 'contact-form', Jetpack::get_active_modules() ) ) return; $q = "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_old_cf7_unit_id'"; if ( ! $wpdb->get_var( $q ) ) return; $url = 'http://contactform7.com/jetpack-overrides-contact-forms/'; ?> <div class="error"> <p><?php echo sprintf( __( '<strong>Jetpack may cause problems for other plugins in certain cases.</strong> <a href="%s" target="_blank">See how to avoid it.</a>', 'wpcf7' ), $url ); ?></p> </div> <?php } ?>