Plugin Author
Ariel
(@arielhr1987)
Hi @pkverma99
1- LLA does not store any avatar url in the database. If you have a theme or plugin that saves that to DB you will need to update somehow that info.
2- User avatars are generated on demand.
If you change to png, the plugin will generate the new avatar in png format for each user automatically when requested. No need to force the regeneration the pluguin does it automatically.
Any question let me know.
Thread Starter
bekind
(@pkverma99)
Thanks you @arielhr1987. I do have some follow on queries:
1. I am wondering if LLA does not store any avatar URL in the database, how is the right avatar rendered for each user. There must be some reference linking an avatar image to a user? If SVG files are converted to PNG (via some mechanism) then that reference would break hence my query.
2. I understand that new avatars would be in PNG but if I wanted to regenerate older avatars (that are already generated in SVG), is there any mechanism in LLA that permits it?
Thanks for the quick response.
Plugin Author
Ariel
(@arielhr1987)
@pkverma99
1. By default wordpress generates user avatars base on user email (it uses gravatar). To generate the avatar LLA uses the initials from the user name, the user email and the settings defined in plugins settings page. The combination of all of them creates a unique avatar file for the user. The plugin simple checks if the files exist, if so thats the avatar, otherwise it generates the file.
Thats why if you change to png the combination will be different, so the plugin wont find any file and it will generate the new png avatar
2. Old and new user avatars will be regenerated as well. If you check your uploads/letter_avatar folder you will see there, all svg avatars. after switchig you will also see the png avatars there. It will just take some time as it depends if the avatar is requested or not.
If you still need a method to regenerate the avatar yourself rigth away after switching just open your wp admin users page, set settings page to show as most records as posible (the max value I think is 999), and them go page by page checking that the user avatar shows correctly. Thats all you need to force the regeneration.
Regards.
Thread Starter
bekind
(@pkverma99)
Thanks @arielhr1987. That’s a great design choice, simple and powerful :). I misunderstood. This is perfect and answers my question.