bonzeny
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
haha yes I see that…whoops.
Also I totally agree with Ethan – the above is not recommended but is a temporary fix for those of you who know what they are doing and don’t want to wait on developers. But I strongly suggest on waiting if you’re not confident with editing PHP.
You could always fix it yourself now rather than wait…
- Log in as admin
- Go to Plugins
- Find “Ultimate Member” and click “Edit” underneath the title
- find the file “ultimate-member/core/um-fields.php” in the right hand list of plugin files. (easy way to do this is use browsers find function…Apple-F on Mac or I guess Ctrl-F on PC…)
- scroll down or use browser search to find this code:
if ( $visibility == 'view' && $this->set_mode == 'register' ){ $disabled = ' disabled="disabled" '; }
- Easiest way to find it is using browser search of “$disabled”
- Once found add:
else { $disabled = ''; };
- Now should look like:
if ( $visibility == 'view' && $this->set_mode == 'register' ){ $disabled = ' disabled="disabled" '; } else { $disabled = ''; };
- Now click update file and then clear browser cache and check pages that had issue.
Simple fix if you don’t mind playing with PHP…
Fix it on line 928 by adding:
else { $disabled = ''; };
Well this is awkward…found the setting in the advanced tab “Disable Nav Menu Settings”…Thanks!
Honestly tried that before BUT now its working…THANK YOU… maybe I refreshed before clicking Save… ??
Forum: Plugins
In reply to: [WordPress Access Control] Warning: array_intersect()I have that sam problem how do you re-install the database???
Viewing 6 replies - 1 through 6 (of 6 total)