19 lines
570 B
PHP
19 lines
570 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
add_action( 'wpcf7_admin_notices', 'wpcf7_jetpack_admin_notices' );
|
||
|
|
|
||
|
|
function wpcf7_jetpack_admin_notices() {
|
||
|
|
if ( ! class_exists( 'Jetpack' )
|
||
|
|
|| ! Jetpack::is_module( 'contact-form' )
|
||
|
|
|| ! in_array( 'contact-form', Jetpack::get_active_modules() ) )
|
||
|
|
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
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|