Title character limit

Hi,
How i can make title characters limited like no one should be able to write longer title the 10 to 20 characters as long titles looks very bad. Thanks

Hi,

Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['title']['max_length'] = 10;

		return $form;
	}
);
1 Like

Thank you so much it worked also can i Change the size of the font its too big also the date font size is too big you can see attached.

Hi,

Regarding listing title, please use this CSS snippet:

.hp-listing__title {
	font-size: 15px;
}

And for date, please use this CSS snippet:

.hp-listing__date {
	font-size: 10px !important;
}
1 Like

Thank you

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