|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/www/wp-content/plugins/wp-whatsapp/includes/ |
<?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 WhatsApp version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'wp-whatsapp' ); ?>
<a
href="https://ninjateam.gitbook.io/whatsapp-for-wordpress/getting-started/how-to-update"><?php esc_html_e( 'Read more details.', 'wp-whatsapp' ); ?></a>
</strong>
</p>
</div>
<?php
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
}
}
);