Title: robindesbles's Replies | WordPress.org

---

# robindesbles

  [  ](https://wordpress.org/support/users/robindesbles/)

 *   [Profile](https://wordpress.org/support/users/robindesbles/)
 *   [Topics Started](https://wordpress.org/support/users/robindesbles/topics/)
 *   [Replies Created](https://wordpress.org/support/users/robindesbles/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/robindesbles/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/robindesbles/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/robindesbles/engagements/)
 *   [Favorites](https://wordpress.org/support/users/robindesbles/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UpdraftPlus: WP Backup & Migration Plugin] UpdrfatPlus App permission for GDrive](https://wordpress.org/support/topic/updrfatplus-app-permission-for-gdrive/)
 *  [robindesbles](https://wordpress.org/support/users/robindesbles/)
 * (@robindesbles)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/updrfatplus-app-permission-for-gdrive/#post-17158007)
 * In case that’s helpful, if you want to disable read-access to your whole Google
   Drive, add this to your `functions.php` before doing the sign into Google step:
 *     ```wp-block-code
       // this is to disable full read access on google drive to updraftplus
       add_filter('updraft_googledrive_scope', function ($scopes) {
           $scopes_array = explode(' ', $scopes);
           $new_scopes = array_diff($scopes_array, ['https://www.googleapis.com/auth/drive.readonly']);
           return implode(' ', $new_scopes);
       });
       ```
   
 * When you go back to your updraftplus plugin config page and finish the setup 
   by signing into Google, it will only ask access to UpdraftPlus files on Drive.
 * I just did this, thank you all for this thread.
    -  This reply was modified 2 years, 7 months ago by [robindesbles](https://wordpress.org/support/users/robindesbles/).

Viewing 1 replies (of 1 total)