XF 1.3 Disable Image Link Option

DaveM

Well-known member
Licensed customer
Is there a way to disable the image link option in the posting options.

This one

ScreenHunter_29 Jul. 02 08.32.webp
 
There's no option for that.

The only thing that comes close is hiding that button with CSS, but it won't prevent [IMG] tags being used if someone knows what they're doing

Code:
.redactor_toolbar .redactor_btn_container_image
{
    display: none;
}

upload_2014-7-2_9-24-30.webp
 
Back
Top Bottom