Crocoblock/jetformbuilder

Forms only accessible for admins

Closed this issue · 2 comments

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.

Hi @marowi85

Try this code:

add_filter( 'jet-form-builder/capability/form', function( $cap ) {
  return 'edit_others_posts';
} );

Hi @Crocoblock

The snippet works great. Thank you very much!