Forms only accessible for admins
Closed this issue · 2 comments
marowi85 commented
Dear Crocoblock team,
Currently, the forms in the backend can only be viewed and edited by admins. It would be great if this could somehow be extended to editors as well.
Crocoblock commented
Hi @marowi85
Try this code:
add_filter( 'jet-form-builder/capability/form', function( $cap ) {
return 'edit_others_posts';
} );
marowi85 commented
Hi @Crocoblock
The snippet works great. Thank you very much!