Hi,
Do what I did, in file ‘/wp-content/plugins/facebook-thumb-fixer_facebook-thumb-fixer.php’ replace
function deprecation_notice() {
?>
<div class="notice error ftf-notice notice-success is-dismissible">
<?php $open_graphite_url = 'https://www.ads-software.com/plugins/open-graphite/'; ?>
<p><?php printf( __('<strong>Important:</strong> The <strong>Thumb Fixer for Social Media</strong> plugin is no longer maintained. It is recommended you switch to the free (and better) <a href="%s">Open Graphite</a> plugin instead.', 'facebook-thumb-fixer' ), $open_graphite_url); ?></p>
</div>
<script>
$('.ftf-notice').click(function(){
document.cookie="ftfwarned=yes; expires=Wed, 1 Jan 2020 12:00:00 UTC; path=/";
var delay = 0;
});
<?php
$warned = $_COOKIE['ftfwarned'];
if($warned == 'yes' && is_user_logged_in()) { ?>
$('.ftf-notice').remove();
<?php }
?>
</script>
<?php
}
by
function deprecation_notice() {
/* ?>
<div class="notice error ftf-notice notice-success is-dismissible">
<?php $open_graphite_url = 'https://www.ads-software.com/plugins/open-graphite/'; ?>
<p><?php printf( __('<strong>Important:</strong> The <strong>Thumb Fixer for Social Media</strong> plugin is no longer maintained. It is recommended you switch to the free (and better) <a href="%s">Open Graphite</a> plugin instead.', 'facebook-thumb-fixer' ), $open_graphite_url); ?></p>
</div>
<script>
$('.ftf-notice').click(function(){
document.cookie="ftfwarned=yes; expires=Wed, 1 Jan 2020 12:00:00 UTC; path=/";
var delay = 0;
});
<?php
$warned = $_COOKIE['ftfwarned'];
if($warned == 'yes' && is_user_logged_in()) { ?>
$('.ftf-notice').remove();
<?php }
?>
</script>
<?php */
}
and its gone.