I added the below code snippet in order to delete links in the editor and to add more formatting options. However, the user then can not write messages to the listings (reply to listing button).
add_filter(
'hivepress/v1/fields/textarea',
function ($field_args, $field){
$html = hivepress()->helper->get_array_value($field_args, 'html');
if(!$html){
return $field_args;
}
$field_args['editor'] = [
'toolbar1' => implode(
',',
[
'italic',
'underline',
'strikethrough',
]
),
'toolbar2' => '',
'toolbar3' => '',
'toolbar4' => '',
'elementpath' => false,
];
return $field_args;
},
1000,
2
);
Any way to fix this code snippet to allow the messages? Thank you