PluginProbe ʕ •ᴥ•ʔ
WP Chat App / 3.8.2
WP Chat App v3.8.2
3.8.1 3.8.2 trunk 2.6 3.4 3.4.1 3.4.2 3.4.4 3.4.5 3.4.6 3.5 3.6 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0
wp-whatsapp / includes / Fallback.php
wp-whatsapp / includes Last commit date
Support 2 months ago Cross.php 2 months ago Fallback.php 2 months ago Fields.php 2 months ago Helper.php 2 months ago I18n.php 2 months ago Plugin.php 2 months ago Popup.php 2 months ago PostType.php 2 months ago Review.php 2 months ago Settings.php 2 months ago Shortcode.php 2 months ago Upgrade.php 2 months ago
Fallback.php
24 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.', 'wp-whatsapp' ); ?>
12 <a
13 href="https://ninjateam.gitbook.io/whatsapp-for-wordpress/getting-started/how-to-update"><?php esc_html_e( 'Read more details.', 'wp-whatsapp' ); ?></a>
14 </strong>
15 </p>
16 </div>
17 <?php
18 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
19 if ( isset( $_GET['activate'] ) ) {
20 unset( $_GET['activate'] );
21 }
22 }
23 }
24 );