PluginProbe
YayCurrency – WooCommerce Multi-Currency Switcher / 3.3.5
YayCurrency – WooCommerce Multi-Currency Switcher v3.3.5
3.3.5 trunk 2.0.1 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.1 2.2 2.3 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 3.0.0 3.0.1 3.0.2 3.1 3.2 3.3 3.3.1 All 28 releases
yaycurrency / includes / Fallback.php

Fallback.php in YayCurrency – WooCommerce Multi-Currency Switcher 3.3.5, at includes/Fallback.php

23 lines 712 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 YayCurrency version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'yay-currency' ); ?>
12 <a href="https://docs.yaycommerce.com/yaycurrency/getting-started/how-to-update-yaycurrency"><?php esc_html_e( 'Read more details.', 'yay-currency' ); ?></a>
13 </strong>
14 </p>
15 </div>
16 <?php
17 if ( isset( $_GET['activate'] ) ) {
18 unset( $_GET['activate'] );
19 }
20 }
21 }
22 );
23