1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
defined( 'ABSPATH' ) || exit; add_action( 'admin_notices', function() { if ( current_user_can( 'activate_plugins' ) ) { ?> <div class="notice notice-error is-dismissible"> <p> <strong><?php esc_html_e( 'It looks like you have another YayMail version installed, please delete it before activating this new version. All current settings and data are still preserved.', 'yaymail' ); ?> <a href="https://docs.yaycommerce.com/yaymail/getting-started/how-to-update-yaymail"><?php esc_html_e( 'Read more details.', 'yaymail' ); ?></a> </strong> </p> </div> <?php if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } } } );
|