Jump to content

Recommended Posts

Posted

So I have this weird request from the client that she wants to hide some statuses in the settings - hidden, locked, unique because it will be confusing to her editors and some of these settings are too powerful for them too.

Is there a way to hide these?

Posted

Untested code, but along those lines:

wire()->addHookAfter('ProcessPageEdit::buildForm', null, function (HookEvent $event) {
    $form = $event->return;
    $statusField = $form->find("name=status")->first();
    if ($statusField) {
        $statusField->collapsed = Inputfield::collapsedHidden;
    }
});

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...