Limit characters in profile description

Why does testimonial in experthive appear this way when the screen oreintation is changed on mobile devices Screenshot by Lightshot and this too Screenshot by Lightshot how do i fix it to appear normal

  1. How to limit the number of words in the profile block, the one I circled

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
);

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