Title: upload control
Last modified: October 12, 2020

---

# upload control

 *  Resolved [escenapintoresca](https://wordpress.org/support/users/escenapintoresca/)
 * (@escenapintoresca)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/upload-control/)
 * Hi, thank you very much for the plugin, it works perfectly.
 * Could I restrict the upload size of the files?
 * Best!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Contributor [Hitesh Makvana](https://wordpress.org/support/users/hiteshmakvana/)
 * (@hiteshmakvana)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/upload-control/#post-13531186)
 * Hi [@escenapintoresca](https://wordpress.org/support/users/escenapintoresca/)
 * You can add the following code to your child theme’s functions.php file and change
   the limit as per your needs.
 *     ```
       // Limit upload size for non-admins. Admins get the default limit.
       function increase_upload_size_limit( $limit ) {
         if ( ! current_user_can( 'manage_options' ) ) {
           $limit = 1048576; // 1 MB
         }
         return $limit;
       }
       add_filter( 'upload_size_limit', 'increase_upload_size_limit' );
       ```
   
 * Thank you
 *  Thread Starter [escenapintoresca](https://wordpress.org/support/users/escenapintoresca/)
 * (@escenapintoresca)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/upload-control/#post-13533145)
 * Thank you very much for your quick reply!
 * Best 🙂
 *  Plugin Author [Ashok Dudhat](https://wordpress.org/support/users/ashokdudhat/)
 * (@ashokdudhat)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/upload-control/#post-13534138)
 * [@escenapintoresca](https://wordpress.org/support/users/escenapintoresca/),
 * No problem 🙂
 * Please let us know if you have any further query in the future.
 * It will really motivate us to make strong plugin continue, if you can leave a
   review for us.
 * Thank you so much.
 * Regards
    Ashok

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘upload control’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-user-profile-avatar_c4dced.svg)
 * [WP User Profile Avatar](https://wordpress.org/plugins/wp-user-profile-avatar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-user-profile-avatar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-user-profile-avatar/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-user-profile-avatar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-user-profile-avatar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-user-profile-avatar/reviews/)

## Tags

 * [files](https://wordpress.org/support/topic-tag/files/)
 * [size](https://wordpress.org/support/topic-tag/size/)
 * [upload](https://wordpress.org/support/topic-tag/upload/)

 * 3 replies
 * 3 participants
 * Last reply from: [Ashok Dudhat](https://wordpress.org/support/users/ashokdudhat/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/upload-control/#post-13534138)
 * Status: resolved