Title: Disable desktop notification
Last modified: March 19, 2019

---

# Disable desktop notification

 *  Resolved [MadhuriRahod](https://wordpress.org/support/users/madhurirahod/)
 * (@madhurirahod)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/disable-desktop-notification/)
 * I wanted to disable desktop notification for all user when order is placed

Viewing 1 replies (of 1 total)

 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/disable-desktop-notification/#post-11333300)
 * Hi,
 * I am not sure which multi-vendor plugin!
 * If you are using WooCommerce Multi-vendor marketplace ([https://wordpress.org/plugins/wc-multivendor-marketplace/](https://wordpress.org/plugins/wc-multivendor-marketplace/)),
   then you may easily control this from WCFM Admin Setting -> notification Setting
 * otherwise, add this code to your child theme’s functions.php –
 *     ```
       add_filter( 'wcfm_is_allow_notification_message', function( $is_allow, $wcfm_messages_type, $message_to ) {
       	if( $wcfm_messages_type == 'order' ) $is_allow = false;
       	return $is_allow;
       }, 750, 3 );
       ```
   
 * Thank You

Viewing 1 replies (of 1 total)

The topic ‘Disable desktop notification’ is closed to new replies.

 * ![](https://ps.w.org/wc-frontend-manager/assets/icon-256x256.jpg?rev=1800818)
 * [WCFM - Frontend Manager for WooCommerce](https://wordpress.org/plugins/wc-frontend-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wc-frontend-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wc-frontend-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-frontend-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-frontend-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-frontend-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/disable-desktop-notification/#post-11333300)
 * Status: resolved