Disable page "Move" functionality

Permalink
Is it possible to disallow (or only allow) specific users / groups to move pages with advanced permissions on?

A quick JS fix would suffice for now...

 
augomat replied on at Permalink Reply
Any news on this?
I really need to disable this feature because otherwise users would be able to produce inconsitencies with another database.
mkly replied on at Permalink Reply
mkly
Well if you want it really quick you can put this in the head for the theme
<style>
.ccm-icon-move-menu {
  display: none !important;
}
</style>

The more complicated way is to create a package and in it's controller add an on_page_view event to it's on_start() method that adds some javascript to remove it.