Change Min width Profile Photo upload in Register

[ad_1]

@calle81

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.

@missveronicatv

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.

@calle81

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.

https://projectdmc.org/plugins/code-snippets/

@missveronicatv perfect !! Thanks.

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer