Recommended
2 years ago
Support
2 years ago
Cross.php
2 years ago
Fallback.php
2 years ago
Fields.php
2 years ago
Helper.php
2 years ago
I18n.php
2 years ago
Plugin.php
2 years ago
Popup.php
2 years ago
PostType.php
2 years ago
Review.php
2 years ago
Settings.php
2 years ago
Shortcode.php
2 years ago
Upgrade.php
2 years ago
Fallback.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | defined( 'ABSPATH' ) || exit; |
| 4 | add_action( |
| 5 | 'admin_notices', |
| 6 | function() { |
| 7 | if ( current_user_can( 'activate_plugins' ) ) { |
| 8 | ?> |
| 9 | <div class="notice notice-error is-dismissible"> |
| 10 | <p> |
| 11 | <strong><?php esc_html_e( 'It looks like you have another WhatsApp version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'ninjateam-whatsapp' ); ?> |
| 12 | <a |
| 13 | href="https://ninjateam.gitbook.io/whatsapp-for-wordpress/getting-started/how-to-update"><?php esc_html_e( 'Read more details.', 'ninjateam-whatsapp' ); ?></a> |
| 14 | </strong> |
| 15 | </p> |
| 16 | </div> |
| 17 | <?php |
| 18 | if ( isset( $_GET['activate'] ) ) { |
| 19 | unset( $_GET['activate'] ); |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | ); |