It's like they must re-upload he user avatar every time they make a profile change. How can I fix this?
It's like they must re-upload he user avatar every time they make a profile change. How can I fix this?
Open ow_system_plugins/base/classes/avatar_field_validator.php file.
replace
if ( !file_exists($path) )
with
if ( !file_exists($path) && !BOL_AvatarService::getInstance()->getAvatarUrl(OW::getUser()->getId(), 1) )
Bobbi, that will be fixed on oxwall.org in the upcoming update, thanks for the report
define('OW_DEV_MODE', true);
Make the changes in ow_system_plugins/base/classes/avatar_field_validator.php and Save it
Change the Config File back to false and save it
define('OW_DEV_MODE', false);