Limit characters in profile description

Hi,

  1. Regarding testimonials, we will fix them in the next update.
    The slider does not redraw completely when you turn the screen, you need to reload the page.

  2. Please try this PHP snippet:
    This limits the number of characters. Please change the number “123” to the number of characters you need.

add_filter(
	'hivepress/v1/forms/user_update',
	function( $form ) {
		$form['fields']['description']['max_length'] = 123;

		return $form;
	},
	1000
);