Hi! I’ve just tried to update the plugin and the new version is in conflict with my server env (PHP 7.4).
I’m a dev too so I can tell you this: what are you doing that you REALLY need PHP > 8?? Not even WP itself or thousands of other popular plugins put this as a requirement yet.
There’s nothing you can not resolve with the previous and more widely used version of PHP: https://w3techs.com/technologies/details/pl-php
Basically, you are now compatible with 1/3 of PHP installations.
Sorry, but this is terrible decision in my opinion.
Regards
]]>Hello Support,
WP version: 6.4.3
WP User Profile Avatar 1.0.1
The pluging WP User Profile Avatar 1.0.1 has a setting called “Avatar Max File Size” which is by default 1MB. This makes sure users are not uploading large images for an avatar. This is a good thing.
But what I noticed is this setting overwrites the max file size for uploading photos to normal post (featured images) as well. This limits end-users to upload files (photo’s) larger than 1MB.
My users can upload feutured images by front-end using toolset (https://toolset.com/) plugin.
Could this be solved?
Hello
I’m integrated with JetEngine
I need to know which metakey is responsible for storing the Profile image path, I want to change it via another plugin and also call Metakey elsewhere on the site.
It is possible?
]]>Dear developer team,
after updating the plugin to the new version, on every post in frontend the author-bio-section was displayed and I did not find any settings to disable this behavior. I don’t know whether there is an according setting for that or whether this happened by accident.
For other users who want to disable that behavior completely instead of hiding this box via CSS, just paste following line of code in your functions.php:
remove_action( 'the_content', 'wp_author_social_info_box' );
Have a nice day.
Wasilij
Hi team,
The plugin was working great until the recent update, this has seem to break my site. Here are the new issues arise after updating:
1) Images in media library grid view are gone. You can only see images directly uploaded by yourself and not by other users. But in list view it is still working fine.
2) Single post author images missing on all single post type
A temporary solution for this would be rolling back to version 1.0.0 of the plugin, however i am concerned of the security risks involved. The latest changelog list out 2 security fixes, can you share in more details what exactly were the security patch done so i can consider would this pose a big risk. Also do you have an estimated timeline on when will the next update comes in to fix all these issue with version 1.0.1?
Thanks, looking forward to your respond.
Hi, The author block appears in the “product description” area on the product pages of my WooCommerce when I active your plugin. I want that it happens this only in the posts pages.
I attach an example.
Regards.
]]>The last update reset all the 95 profile images that were set with URL field and image profile uploaded. Is there a way to recover that or should I reset all the 95 images by hand? ;-((
]]>Hi,
Since the last update all Media files cannot be viewed in grid mode. Disabling this plugin restors Media Files.
I have not checked on the other bugs reported by other users in this forum.
I also noticed that the last update, 2 days ago, is not compatable with the current version of WordPress.
Please let us know what you suggest or if an ETA on the next update.
Thanks
]]>Since updating yesterday, the avatar appears in blog posts at the top left above the featured image in addition to its usual position at the bottom of the page. Also, it appears on posts where the meta was deactivated. I use Avada theme.
]]>Hello, the latest update came with two major bugs.
Thanks for the update, but it’s a big mess.
]]>Hello,
The plugin has not been updated for more than a year and our security plugin shows it as a vulnerability. Is the plugin still supported? Can you release an update?
Regards
Dean Hall
Currently, the plugin seems to require a user already exists before it shows the fields in the profile. If you are adding a new user this requires an additional step of going back to the newly created user to add the avatar. Can the avatar be added at the same time a new user is created?
]]>Hi, I just noticed that your plugin seems to break the Gravatar implementation.
I mean that by activating your plugin with default settings, the users with a Gravatar on (like myself) are shown as if they have no avatar assigned, even in the Users list in backend (show avatars option is checked, as default).
Is there anything I am missing?
Sincerely,
Ramon Ruiz
Hi, I was wondering if it would be possible to upload an avatar for a specific user, using a shortcode like this, maybe:
[user_profile_avatar_upload user_id={$user_id}]
I was looking t’hough the code and I found a little modification that should work. Maybe you want to implement it in the next update.
Changing line 90
in wp-user-profile-profile-avatar-shortcodes.php
from this:
$user_id = get_current_user_id();
to this:
$user_id = ( is_array( $atts ) AND array_key_exists( 'user_id', $atts ) AND is_numeric( $atts['user_id'] ) ) ? $atts['user_id'] : get_current_user_id();
This checks if the array $atts exists, if user_id exists within $atts and if it is a number. If so, it gets that as the user to attach the avatar to.
Please let me know if you would consider this petition, as this is something I need for my website.
Sincerely,
Ramon Ruiz
Hi,
Maybe not understanding the set up instructions.
I want to place a shortcode into HTML and when that content renders it to show the current logged in users avatar not the default one. So basically need the shortcode to dynamically add the current logged in users ID to generate the correct avatar but everything i’ve tired so far either doesn’t work or crashes my website.
I need some clear instruction on how to implement this please. All users have their own avatar uploaded
Thanks in advance
]]>Not working on wordpress multisite and MultilingualPress. It’s ok on the main english version, but there’s no image on my lithuanian version of the website. On the frontend and backend.
How can I fix this?
I’m using this snippet to output an image
<?php
// Get The Post's Author ID
$authorID = get_the_author_meta('ID');
$authorname = get_the_author_meta('display_name', $authorID);
// Set the image size. Accepts all registered images sizes and array(int, int)
$size = 'thumbnail';
$imgURL='';
// Get the image URL using the author ID and image size params
if (function_exists('get_wpupa_url'))
$imgURL = get_wpupa_url($authorID, ['size' => $size]);
// display image on the page
echo '<img src="'. $imgURL .'" alt="'. $authorname .'">';
?>
]]>
Hello, I have added the templates folder to my “wpwebsite” theme folder, but when I edit them, it doesn’t show any changes.
Try as follows /wp-content/themes/wpwebsite/user_profile_avatar/templates/….php
But didn’t get any results.
I hope you can tell me if it is possible to do this and how to do it.
Best regards.
Pablo
How will we display photo field on WooCommerce register page. I set everything but how will a user upload his avatar? Which form?
And can we display and edit photo field on edit account page?
]]>I would like to change the size of the thumbnail image that is shown. It is always too blurry.
]]>Hello
I added the avatar upload short code in my account details and it works well.
However, all the subscribers’ uploaded images were all in my media library which troubles me because it would get harder and harder to manage my media library.
Is there any way that I can change the directory of uploaded images to another folder so that I won’t see those images in my media library?
Thank you very much!
]]>I am trying to add a dynamic shortode using:
echo do_shortcode('[user_profile_avatar user_id="<?php $user->id ?>" size="original" align="aligncenter" link="image" target="_blank"]'. $user->display_name .'[/user_profile_avatar]');
but it is not working.
I have tested that $user-id is returning the correct user ID, but I just get a default image.
]]>There are 3 fields that left in the user database table after the plugin is uninstalled.
_wpupa_attachment_id
_wpupa_default
_wpupa_url
Could you please provide a solution to remove these fields and perform a clean uninstall when the plugin is deleted.
Thank you.
]]>Hi
I would like the Subscribers and other users to be able to upload their avatar / profile picture, but I do not want them to have access to my Media Library.
Can you assist?
]]>Hi, thank you very much for the plugin, it works perfectly.
Could I restrict the upload size of the files?
Best!
]]>Hello.
I have installed and activated the plugin.
Pasted the shortcode in the right place in my theme.
<? php echo do_shortcode (‘[user_profile_avatar_upload]’); ?>
When trying to load an image, it shows an error:
“Error! Select Image”