Change labels in the listing form

Hi!
I use RentalHive, and i want to know how to change the field name in the listing a property from “title” to Name
Pardon my English, i am Norwegian

Hi,

Sorry for the late reply. I replied via email but will also post the code snippet here in case if someone has the same issue:

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

		return $form;
	},
	1000
);

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