Regarding image requirements


I would like to require image selection when submitting listings.
How do I set this up?

Please try this PHP snippet Require uploading at least one image for listings #hivepress #listings · GitHub

Thank you very much!

It appears as optional, is it possible to remove the optional indication?

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['images']['statuses']['optional'] = null;

		return $form;
	},
	1000
);

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