[ad_1]
Change the 600 at “Profile Photo Thumbnail Sizes (px)” to 300
at UM Settings -> General -> Uploads
@missveronicatv thanks for the reply.
-
This reply was modified 5 hours, 37 minutes ago by
calle81.
I tried, but I can’t find Profile Photo Thumbnail Sizes (px) 😔
This is my current setting https://ibb.co/Jc0y6n1. What should I change? Thanks.
You can try this code snippet which will set your Registration upload profile photo size to 300px.
add_filter( "um_image_handle_register_profile_photo__option", 'register_profile_photo_size', 10, 1 );
function register_profile_photo_size( $data ) {
$data['min_width'] = 300;
$data['min_height'] = 300;
return $data;
}Install the code snippet into your active theme’s functions.php file
or use the “Code Snippets” plugin.
@missveronicatv perfect !! Thanks.
