Add description to location field in Complete Profile

Hello,

How can I add a description text under the location field on vendor’s Complete profile page?

Hi,

Please use this PHP snippet:

add_filter(
	'hivepress/v1/forms/vendor_update',
	function( $form ) {
		$form['fields']['location']['description'] = 'custom text here';

		return $form;
	},
	1000
);

Thank you.

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