Turn off product approved notification to vendors

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Best Multi Vendor Marketplace Plugin for WordPress Forums WCFM Turn off product approved notification to vendors

Viewing 3 reply threads
  • Author
    Posts
    • #30779
      Kristin
      Guest

      How can I turn off the “product approved” notification that is sent to vendors each time they add a product? (I am still using WCMp.)

    • #30850
      WCFM Forum
      Member

      Hi,

      Please add this code to disable this notification –

      add_filter( 'wcfm_is_allow_notification_message', function( $is_allow, $wcfm_messages_type ) {
      	if( $wcfm_messages_type == 'new_product' ) {
      		$is_allow = false;
      	}
      	return $is_allow;
      }, 50, 2 );

      Thank You

    • #30901
      Kristin
      Guest

      Perfect! Thank you!

    • #30941
      WCFM Forum
      Member

      Great, you are welcome 🙂

Viewing 3 reply threads
  • The topic ‘Turn off product approved notification to vendors’ is closed to new replies.