Tagged: custom field types, file size, Image Uploads
Is there a filter to increase the default 8MB for file and image uploads in the plugin? Thanks in advance for any help.
Hi Pablo,
Welcome to BuddyDev support forums.You may use the following code and customize it as you need
/** * Customize allowed upload sizes for xprofile custom field types. */ add_filter( 'bpxcftr_allowed_sizes', function ( $allowed ) { $allowed['file'] = 64; // 64MB $allowed['image'] = 32; // 32 MB for image field. return $allowed; } );
hope that helps.
Regards
Brajesh
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
This topic is: not resolved