Search code examples
phpyii2redactor

How to disable or remove Yii2 redactor Image and file button?


I am using Yii2 Redactor from Here. I want to remove Image and File Upload.

view Code :

<?= $form->field($model, 'reason')->widget(
\yii\redactor\widgets\Redactor::className(), [])

 ?>

Screenshot

Screen shot


Solution

  • If you want to hide the buttons for all instances of Redactor you can add this into the module config

    'modules' => [
        'redactor' => [
            'class' => 'yii\redactor\RedactorModule',
            'widgetClientOptions' => [
                'buttonsHide' => ['image','file'],
            ]
        ],
    ],
    

    Otherwise you can add this to the individual call

    <?= $form->field($model, 'reason')->widget(\yii\redactor\widgets\Redactor::className(), [
        'clientOptions' => [
            'buttonsHide' => ['image','file'],
        ]
    ])?>