Hello,
Currently the maximum image size for the avatar is 2MB. How can I change this value?
thank you in advance for your help
Jerome
Notifications
Clear all
Jan 17, 2021 9:47 pm
1 Reply
Jan 18, 2021 12:04 pm
You can use the wpforo_avatar_upload_max_filesize hook.
Put the code in the functions.php file of the active theme:
add_filter('wpforo_avatar_upload_max_filesize', function(){ return 2 * 1024 * 1024; });
The red marked value the default avatar size(2MB), you can change it as you like.
Please note all questions related to free wpForo plugin should be asked in the wpForo.com community. Here we only support questions related to paid addons.