Form editing capability for Editors
-
Hi guys,
I’ve setup some Caldera Forms on a multisite and want to allow the Editor users to make changes to the forms.
I have followed the instructions on here https://calderaforms.com/doc/caldera_forms_manage_cap
and added this code`
/** Allow users with the editor role to use the Caldera Forms admin screen */
add_filter( ‘caldera_forms_manage_cap’, function( $cap, $context ) {
if( ‘admin’ == $context ) {
return ‘delete_posts’;
}
return $cap;
}, 10, 2 );
`
Which allows the Editors to access the admin screens for the forms, but when they try to save changes, the “Saved Successfully” message does not appear, and when I come back to visit the form settings, their changes have not been saved.
Could this be something to do with Multisite or could I be overlooking something else?
Cheers,
Robey
- The topic ‘Form editing capability for Editors’ is closed to new replies.