Different Translations for Requests And Listings Forms

Hi,

Please try these PHP snippets:

Change title for listing:

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

Change title for request:


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

Change images for listing:

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

Change images for request:

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

​I hope this is helpful to you.