Add HTML editor to the Category Description

is it possible to add the HTML editor to the listing category description?

I tried:

add_filter(
	'hivepress/v1/models/listing-category',
	function( $model ) {
		$model['fields']['description']['editor'] = true;

		return $model;
	},
  1000
);

But didnt work… :frowning:

Hi,

Unfortunately, there’s no such feature, it would require a custom implementation. Alternatively, you can consider installing a third-party plugin that will allow you to extend the editing of this description.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.