@rfree190
3 years, 2 months ago
I used this for both the Avatar and the Cover Image;
add_filter( 'bp_core_avatar_original_max_filesize', function() { return 26214400; // 25mb } ); add_filter( 'bp_attachments_get_max_upload_file_size', function() { return 26214400; // 25mb } );
Do you see any issues doing it like this? It works, but wondering if it’s going to mess anything else up along the way.