HEX
Server: Apache/2.4.54 (Debian)
System: Linux f988254d8f22 6.8.0-87-generic #88~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Oct 14 14:03:14 UTC 2 x86_64
User: (1000)
PHP: 7.4.33
Disabled: NONE
Upload Files
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 &#128557;  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
 }