Changing who can access your client proofing collections

If you work in a team, it’s quite possible that more than one person has access to your website. By default, only administrators have access to picu proofing collections.

But chances are that the person who manages your client proofing are not also administrators to your website, and so you would like to change who’s got access to picu and the proofing galleries. Luckily, there’s an easy way to change this, using a filter.

WordPress provides some default user roles, each of which has their own capabilities, which you can find here in the WordPress Handbook.

As said, by default we restrict access to proofing collections to site administrators (or, everyone with the capability: “manage_options“). If you would like to change this to โ€“ let’s say โ€“ the editor user role (capability: “edit_posts“), you can do so like this:

function my_picu_custom_capability() {
    return 'edit_posts';
}
add_filter( 'picu_capability', 'my_picu_custom_capability' );Code language: JavaScript (javascript)

IMPORTANT: Make sure to add this code to a custom plugin, or by using the code snippets plugin, to make sure the changes don’t get overwritten by future theme updates.

Posted in:

Related Posts

These posts could interest you as well, read on to get the full picture.

  • Update โ€“ September 2025

    This past month, we’ve been working on improving how you can get paid when selling images through picu, as well as tackling some smaller bugfixes and improvements under the hood. Let’s dive straight into what’s new. PayPal Support We’re excited to announce that picu Pro now officially supports PayPal as a payment gateway when selling…

    Read more

  • picu Pro 2.2.0 & picu 3.2.0: PayPal Support is here

    We’ve been listening to your feedback, and today we’re thrilled to announce that picu Pro 2.2.0 brings PayPal support to your photo proofing workflow. More Choice for Your Clients Your clients have different preferences when it comes to paying for their photos. Some love the simplicity of credit cards through Stripe, others prefer direct bank…

    Read more