Kernel bug: ClassiPress doesn't display errors from edit_user() function
There is a bug in the ClassiPress "kernel," in:
Code:
\wp-content\themes\classipress\framework\kernel\view-edit-profile.php
Line 25 populates a dynamically-created "errors" attribute of "this" with any errors returned by WordPress's
edit_user() function.
The problem is:
The theme doesn't display those error messages. It doesn't do anything with them.
You can fix this by adding the following line of code immediately below line 25:
PHP Code:
appthemes_add_notice( 'update-profile-errors', $this->errors->get_error_message(), 'error' );
After adding that, the theme will display those error messages.
Will you fix this in ClassiPress 3.4?