/**
* Theme Name: Audib Child
* Description: This is a child theme of Audib, generated by Merlin WP.
* Author: <a href="https://pavothemes.com/">Pavothemes</a>
* Template: audib
* Version: 1.1.6
*/

function disable_specific_plugin_updates( $value ) {
    if ( isset($value) && is_object($value) ) {
        if (isset($value->response['elementor/elementor.php'])) {
            unset($value->response['elementor/elementor.php']);
        }
    }
    return $value;
}
add_filter( 'site_transient_update_plugins', 'disable_specific_plugin_updates' );