Modify listing manual approval

After the vendor changes the description, price or title, it changes the listing status to draft and waits for my acceptance.

  1. I don’t receive any email regarding this, how can I set that I will receive an email when the listing details changed?
  2. Where is the setting that I can enable or disable manual approval for listing edit?

Hi,

  1. Sorry, there’s no simple code snippet for this, it would require a custom implementation.

  2. You can enable or disable this in HivePress > Settings > Listings > Search section > Moderation.

HivePress > Settings > Search

There is no tab with the name search inside the settings.

Hi,
Please check the screenshot below:

I don’t this we really understand each other. My question is what happens when vendors change the listing price or description/title?
Will it transfer the listing to be manually approved by admin? or it will be automatically approved?

Hi,
Default fields Title and Description not moderated.
If you want these fields to be moderated, please try this PHP snippet:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['title']['_moderated'] = true;
		$form['fields']['description']['_moderated'] = true;

		return $form;
	}
);
1 Like

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