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
Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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.