Page 1 of 1

Wwbeditor how to hide inset image and upload image

Posted: Wed Dec 14, 2022 4:26 pm
by amir2314
Hi dear pablo .
I need help about wwwbeditor
. I need disable or hide insert image and upload image in the list for some reason . How can i do it ? Help me please

Re: Wwbeditor how to hide inset image and upload image

Posted: Wed Dec 14, 2022 4:33 pm
by Pablo
Buttons can be defined via the settings:

Code: Select all

buttons: 
         {
         'undo': false,
         'redo': false,
         'bold': true,
         'italic': true,
         'underline': true,
         'strikethrough' : true,
         'justifyleft':true,
         'justifycenter':true,
         'justifyright':true,
         'justifyfull':true,
         'insertorderedlist':true,
         'insertunorderedlist':true,
         'indent':true,
         'outdent': true,
         'createLink': true,
         'unlink' :true,
         'insertimage' : false,
         'uploadimage' : false,
         'inserthorizontalrule': false,
         'cut': false,
         'copy': false,
         'paste': false,
         'forecolor': true,
         'hilitecolor': true,
         'br': true,
         'formatblock': true,
         'fontname': true,
         'fontsize': true
         }

Re: Wwbeditor how to hide inset image and upload image

Posted: Wed Dec 14, 2022 4:37 pm
by amir2314
Pablo wrote: Wed Dec 14, 2022 4:33 pm Buttons can be defined via the settings:

THANK YOU VERYMUCH DEAR PABLO