Description
After upgrading to 3.0.183 I now cant add a new user in my page tree because of an error:
Can’t save page 2199: /PARENT/untitled-page-4/: Page using template “USERTEMPLATE” is not moveable. (Template::noMove) [/ADMINFOLDER/access/users/ => /PARENT/]
This hook may come into play which we use to get around having to add name:
$wire->addHookAfter('Pages::added(template=74)', function(HookEvent $e) { $member = $this->users->get($e->arguments(0)->id); $member->addRole(1150); $member->save(); });
We go around this by switching advanced mode on and allowing the template to be moved. Now this may not be a bug and may be a new requirement, but if you follow the steps here:
As soon as you clone the user template, it is going to come with the no move option checked.
Any thoughts?