PWaddict Posted November 10, 2018 Posted November 10, 2018 I would like to change the "Move to Trash" text from the Delete tab only for non-superusers. Any ideas how to do that?
kixe Posted November 10, 2018 Posted November 10, 2018 add this hook to your ready.php $this->wire()->addHookBefore('InputfieldCheckbox::render', function($e) { if ($e->object->id != "delete_page") return; if ($this->wire('user')->isSuperuser() == false) $e->object->label = "Hello World"; }); 1 1
PWaddict Posted November 10, 2018 Author Posted November 10, 2018 And with this I can change the "Move to Trash" button's text: $this->wire()->addHookBefore('InputfieldButton::render', function($e) { if ($e->object->id != "submit_delete") return; if ($this->wire('user')->isSuperuser() == false) $e->object->value = "Hello World"; }); Thank you @kixe 2
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now