Hi @patowins,
I changed the code from
if ( ( $visibility == 'view' && $this->set_mode == 'register' ) ||
( isset( $data['editable'] ) && $data['editable'] == 0 && $this->set_mode == 'profile' ) )
to
if ( $visibility == 'view' && $this->set_mode == 'register' )
Hope this helps. 🙂
Hi,
no, I haven’t tested the pre-release version. I simply edited the file in the current version.
Hi @ultimatemembersupport,
I found the error. It’s in the core/um-fields.php file, line 1111/1112.
The newly added if condition seems to be wrong. Removing the latter part fixed the error.