I would like to hide the PRICE on the listing submission screen

I would like to hide the PRICE on the listing submission screen. Is that possible?

The reason is that we want to sell the plan at the beginning for 0 yen and later on we want to charge for it.

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/listing_submit',
	function( $form ) {
		unset($form['fields']['price']);

		return $form;
	}
);

And also add this PHP snippet to make the price field optional for listings Make the price field optional for marketplace listings #hivepress #marketplace · GitHub

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