Disable plugin update notifications in WordPress

/* Disable plugin update notifications in WordPress  */
function filter_plugin_updates( $value ) {
    unset( $value->response['PLUGINDIRNAMEHERE/PLUGINMAINFILE.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );

- Replace PLUGINDIRNAMEHERE with Plugin folder directory name.
- Replace PLUGINMAINFILE with Plugin main file name.