Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi all,
    I am using this to stop the update features in TML. It’s working well in my website. Hope it will work for you
    function remove_update_notifications($value) {

    if ( isset( $value ) && is_object( $value ) ) {
    unset( $value->response[ plugin_basename(‘theme-my-login/theme-my-login.php’) ] );
    }

    return $value;
    }
    add_filter( ‘site_transient_update_plugins’, ‘remove_update_notifications’ );

Viewing 1 replies (of 1 total)