1. Home
  2. Knowledge Base
  3. Customizations
  4. PHP Functions
  5. How to Increase Upload Limit for Cover Photos and Avatar in BuddyBoss

How to Increase Upload Limit for Cover Photos and Avatar in BuddyBoss

Introduction

BuddyBoss sets a maximum file size for avatars and cover photos. If you want to increase upload limit for cover photos and avatar, you can limit with a custom function. This guide explains how you can raise the upload limit for both cover photos and avatars.

Custom Workaround

Before proceeding, make sure you have a complete site backup.

  1. Go to Appearance > Theme Editor in your WordPress admin dashboard.
  2. Under Select theme to edit, choose your active theme (preferably BuddyBoss Child Theme), then click Select.
  3. From the Theme Files list, click Theme Functions (functions.php).
  4. Paste the following code just before the closing PHP tag (?>):
function bbp_cover_image_file_size( $fileupload_maxk, $type ) {
    if ( 'avatar' == $type ) {
        $fileupload_maxk = 10485760; // in bytes, 10MB
    }

    if ( 'cover_image' == $type ) {
        $fileupload_maxk = 10485760; // in bytes, 10MB
    }

    return $fileupload_maxk;
}
add_filter( 'bp_attachments_get_max_upload_file_size', 'bbp_cover_image_file_size', 10, 2 );
  1. Click Update File to save your changes.

Note: Modifications are typically considered custom work, but we are making an exception in this case. Please review the BuddyBoss Support Policy.

This will increase the upload limit to 10MB. You can adjust this value to your preference. To convert MB to bytes, you can use a converter such as: https://www.gbmb.org/mb-to-bytes.

Troubleshooting and FAQs

Q: The upload limit did not increase.
A: Ensure there is no server-level PHP upload limit overriding this change. Check upload_max_filesize and post_max_size in your php.ini.

Q: Can I set different limits for avatars and cover photos?
A: Yes. Adjust the respective values in the code for ‘avatar’ and ‘cover_image’.

Q: Will this affect all users or only new uploads?
A: This affects all users who upload avatars or cover photos after the code is applied.

Q: Can I revert this change?
A: Yes. Remove the code from functions.php and save the file.

Q: Who can I contact for further assistance?
A: Please review the BuddyBoss Support Policy or consult a developer.

Was this article helpful?

Related Articles

Subscribe to Our Newsletter

Stay In Touch

Subscribe to our Newsletter, and we’ll send you the latest news from BuddyBoss

  • This field is hidden when viewing the form
  • This field is for validation purposes and should be left unchanged.

To speak to our Agency consultant, fill in the form found at our Contact Page.

  • Get Started

    Enter your name and email address to get started with your project...

  • This field is for validation purposes and should be left unchanged.