C?t?lin Dogaru
Forum Replies Created
-
Forum: Plugins
In reply to: [Avatar Manager] Number of questions (migrating from User Photo plugin)Hi iamonlythird,
Thank you for considering Avatar Manager. With the current release of the plugin:
- No, users are able to choose between using Gravatar or a self-hosted avatar image.
- Uploading an avatar image will automatically generate a resized copy of the original image at the default size (e.g. 96×96).
- No, you can’t set an upload size limit.
- Yes, only users with the
upload_files
capability can upload an avatar image. Alternatively, you can enable the Anyone can upload option under the Settings Discussion Screen to bypass this verification.
I’m considering adding 1 and 3 to the next release of the plugin (which is coming soon now that the WordPress 3.7 is out).
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Uploaded Avatars keep disappearingHi vegastriguy,
Anything new related to this issue?
Thanks,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Blurry AvatarHello limemodels,
Thank you for reporting and sorry for the delayed response. Uploading an image from front-end or back-end shouldn’t produce different results (the same code gets executed in both cases). If possbile, please provide a link to your website where the issue occurs.
Thank you,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Uploaded avatar being overwritten with gravitar.Hi Dave,
Thank you for reporting. Have you encountered the same issue with previous versions of the plugin? Try disabling all plugins, except Avatar Manager. Also check that the avatar ratings are properly set. Please let me know if this helps.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] File name without sizeHi haldocalypse,
No, you can’t do it directly. Avatar images are cached at different sizes to improve load times.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] File is empty ErrorHello,
The issue is caused by version 1.5.1 of Avatar Manager. Plugin scripts are conditionally loaded when the
IS_PROFILE_PAGE
constant is defined. The WordPress core defines it on user profile pages and most of the plugins that enable front-end user editing. As a temporary solution you could define it yourself in the Classipress profile template or use the previous version of the plugin.Thank you,
C?t?linForum: Plugins
In reply to: [Avatar Manager] File is empty ErrorHi nims,
Thank you for reporting. Have you encountered the same issue with previous versions of the plugin? Does it work if you try to upload an avatar image from the Users Your Profile Screen?
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Translation to PortugueseHi Mateus,
Thank you for choosing to contribute to Avatar Manager! Please create a new pull request containing the translation or if your prefer just email it using this contact form (I’ll reply back so you can attach the files).
Cheers,
C?t?linForum: Plugins
In reply to: [Avatar Manager] frontend uploader templateHello dkim1985,
Thank you for the feature request. Currently this is possible with plugins that enable front-end profile editing. Shortcodes and template tags are not yet implemented, but planned for future release.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Uploaded Avatars keep disappearingHello artnerdlauren,
Thank you for reporting. Have you encountered the same issue with previous versions of the plugin? What’s happening when an image disappears? Are you still able to select the custom avatar on the profile screen or Gravatar is the only option available? If the custom avatar is still available but displaying the default Gravatar image instead please check that the avatar ratings are properly set. To do this go to Settings Discussion Screen and look for Maximum Rating under Avatar settings. Then go back to the Users Your Profile Screen and make sure that the selected avatar rating is less than or equal to the current maximum rating. Please let me know if it helps!
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] bbpress user profile – avatars improvement suggestionHi Kris,
Thank you for the feature request. I’m considering adding bbPress support to the next release.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Javascript issue on submit formsHi fredrr,
Thank you for reporting. Updating to the latest version of Avatar Manager should fix the issue. Please let me know if it works as expected.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Another Multisite VoteThanks, I’ve received the PayPal donation. Please let me know your desired name (full name is preferred if other than your WordPress username) to add you to the contributors list.
Best regards,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Another Multisite VoteSorry for the late reply. Thanks for getting involved and for you support. Just wanted to let you know that your help is much appreciated.
Thank you,
C?t?linForum: Plugins
In reply to: [Avatar Manager] Today's update can't display avatar's nowHi itssri,
Thank you for reporting. I’ve tried to reproduce the issue but no unexpected results so far. You can try to cleanup the plugin data and let it to regenerate it. To do so, open avatar-manager.php and add the following code at the end of the
avatar_manager_init
function, right after theload_plugin_textdomain
call and refresh your browser.$args = array( 'meta_key' => 'avatar_manager_custom_avatar' ); $users = get_users( $args ); $upload_dir = wp_upload_dir(); $options = avatar_manager_get_options(); foreach ( $users as $user ) { $custom_avatar = get_post_meta( $user->avatar_manager_custom_avatar, '_avatar_manager_custom_avatar', true ); foreach ( $custom_avatar as $size => $skip ) { if ( is_array( $skip ) && ! $skip['skip'] ) { $file = str_replace( $upload_dir['baseurl'], $upload_dir['basedir'], $skip['url'] ); @unlink( $file ); } elseif ( ! $skip ) { $file = avatar_manager_generate_avatar_path( $user->avatar_manager_custom_avatar, $size ); @unlink( $file ); } } delete_post_meta( $user->avatar_manager_custom_avatar, '_avatar_manager_custom_avatar' ); get_avatar( $user->ID, $options['default_size'] ); } echo 'Don\'t forget to restore the <strong>avatar_manager_init</strong> function!';
Please let me know if it helps.
Thank you,
C?t?lin