[Question] Disable crop and rotate in image upload dialog?
vfsoraki opened this issue · 1 comments
vfsoraki commented
Is it possible?
I didn't find anything in documentations.
anthonyjb commented
Simplest solution for disabling tools in the image dialog is just to hide them with CSS, like so:
.ct-control--crop,
.ct-control--rotate-cw,
.ct-control--rotate-ccw {
display: none !important;
}
P.S sorry for the late reply.