How can i change input search placeholder?

Please, i need to change place holder of input search form.

thanks i found in documentation

Can you share the information here please?

Hi,
Please try this PHP snippet:

add_filter(
	'hivepress/v1/forms/listing_search',
	function( $form ) {
		if ( isset( $form['fields']['s'] ) ) {
			$form['fields']['s']['placeholder'] = 'custom text here';
		}

		return $form;
	},
	1000
);

thank you very much

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