Hello
Thank you for reaching out.
You can achieve this by overriding templates and using custom code.
You can learn more on overriding templates here – Template Override (directorist.com)
Please override the textarea.php ( https://prnt.sc/nDNId10otTL3 ) file with the following code using a child theme –
<?php
/**
* @author wpWax
* @since 6.6
* @version 7.4.0
*/
if (!defined('ABSPATH')) exit;
$maxlength = $data['max'] ?? '';
?>
<div class="directorist-form-group directorist-form-description-field">
<?php
$listing_form->field_label_template($data);
wp_editor(
wp_kses_post($data['value']),
$data['field_key'],
apply_filters(
'atbdp_add_listing_wp_editor_settings',
array(
'media_buttons' => false,
'quicktags' => true,
'editor_height' => 200,
)
)
);
$listing_form->field_description_template($data);
?>
<div id="directorist_listing_description_indicator"></div>
</div>
This should be enable advance editor for all textarea fields. You can contact to our support channel if you need face any issue while implementing the code.
Kind Regards