How to Unset Unseen Functionality on Frontend Dashboard

Copy and paste the following code in functions.php of your current theme

function override(){
    $value = true;
    return $value;
}
add_filter( 'wpcfe_disable_unseen', 'override' );