Make some social links required for vendors

is there a snippet to make certain social links mandatory for vendor profiles; to help authenticity

I tried the following snippet but didn’t work:

add_filter(
	'hivepress/v1/forms/vendor',
	function( $form ) {
		$form['fields']['WhatsApp']['required'] = true;
		$form['fields']['email']['required'] = true;
		return $form;
	},
	1000
);

Hi,

Please check the sample solution in this topic: Make some social links required - #3

​I hope this is helpful to you.

That solution is for listing. I’m talking about vendor profiles when signing up. Your code doesn’t apply to vendor profiles

Hi,

Please note that we have provided an example of a PHP snippet that you will need to modify.

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