Hide plugins update notification

function filter_plugin_updates( $value ) {
    unset( $value->response['elementor/elementor.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );

function filter_plugin_updates_pro( $value ) {
    unset( $value->response['elementor-pro/elementor-pro.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates_pro' );

Leave a Reply

Your email address will not be published. Required fields are marked *