File: /var/www/html/wp-content/plugins/super-video-player/inc/notice.php
<?php
// Quick Shortcode
add_action('admin_notices','svp_quick_shortcode');
function svp_quick_shortcode(){
$screen = get_current_screen();
//If not on the screen with ID 'edit-post' abort.
if( $screen->id !='edit-svplayer' )
return;
?>
<div class="notice notice-success">
<b style="font-size:24px;"><?php echo __('Important Notice !','h5ap'); ?> </b>
<p style="font-size:17px;margin:0;"><?php echo __('In <strong>Super Video Player </strong> <em>Version 1.3</em> we updated our plugin\'s framework to make this plugin compatible with WordPress 5.5 or later! You may encountered some unexpected behavior on players (created with oder verion ) and misconfiguration on some players in backend 😭 Please consider reconfiguring them accourding to your preferance and update them. We are sorry for any inconvenience this may have caused.','bPlugins'); ?>
<p style="font-size:12px;margin:2px; display:none;" ><?php echo __('You can change the options of Quick Player/ShortCode','h5ap'); ?> <a class="button button-primary" href="options-general.php?page=html5vp_settings">Here</a></p>
</div>
<?php
}