Reduce the descripion of my listings texts

Hello,

I would like to reduice the descripion of my listings texts and use a button “More” for displaying all the texts. How to do that ?

I used this but don’t want working :

/* Réduire la longeur des textes de descroption des annonces à 123 caractères*/
add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['description']['max_length'] = 123;

		return $form;
	},
	1000
);

Thanks

Hi,

Unfortunately, there’s no such feature, it would require a custom implementation. As a workaround, you can check this sample: Limit amount of characters per value - #2 by yevhen

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