Current File : /home/inteuuod/public_html/wp-content/plugins/yaycurrency/includes//Fallback.php
<?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 YayCurrency version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'yay-currency' ); ?>
<a href="https://docs.yaycommerce.com/yaycurrency/getting-started/how-to-update-yaycurrency"><?php esc_html_e( 'Read more details.', 'yay-currency' ); ?></a>
</strong>
</p>
</div>
<?php
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
}
}
);