Change name of "Title" in Add Listing form to something else

By default, whenever you add a listing, the name of the business is referred to as “Title”. That’s confusing people who think that you’re asking for a business title like “CEO” or “HR Director” rather than the name of the business. Any way we can change the name of that field?

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/listing_update',
	function($form){
		
		if(isset($form['fields']['title'])){
			$form['fields']['title']['label'] = 'Custom text';	
		}
		
		return $form;
	},
	1000
);
1 Like

Thanks. This worked great.

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