User Upgrade Question

I'm an putting in user upgrade system. One of the upgrades I was looking involved signature or avatars. I have a user base of about 2000 now, lets say 200 of them have an avatar. What happens when I disable avatars for the basic user group? Will people that already have avatars be able to keep them?
 
I'm an putting in user upgrade system. One of the upgrades I was looking involved signature or avatars. I have a user base of about 2000 now, lets say 200 of them have an avatar. What happens when I disable avatars for the basic user group? Will people that already have avatars be able to keep them?
Avatars are a major part of XenForo (They're used for showing last poster in a topic, as well as where you have posted yourself).
 
The permission related to signatures only applies to being able to edit them.

Any existing signatures will remain.

You would need to run an SQL query to remove them all, after changing the permission.
Code:
UPDATE xf_user_profile set signature = ''
 
Top Bottom