• Resolved yyy111

    (@knon-disign)


    Simply static cannot be generated when logged in with editor privileges. wp-json fails with 403 error
    It was possible to run it in the previous version 2 series.


    ?WordPress 6.4.1
    ?simply static 3.1.3

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author patrickposner

    (@patrickposner)

    Hey @knon-disign,

    thanks for reaching out!

    It’s true, all actions inside of Simply Static require the “manage_options” capability.

    However, we offer a filter to change that. With the following code snippet, you can enable it for editors:

    add_filter('ss_user_capability', function( $cap ) {
        return 'edit_posts';
    });
    Thread Starter yyy111

    (@knon-disign)

    Hey @patrickposner,
    thank you!
    It was helpful. It is solved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unable to generate with editor privileges’ is closed to new replies.