disable inquiry notification
-
Hi,
i’m using this plugin in one of my sites and i want to completely disable new inquiries on the vendor panel. i’ve seen one of the support request similar to this and used below hook to disable inquiry section at vendor panel. but what is happening now is inquiry section is removed but whenever any inquiry comes, it is shown as a notification at vendor panel. i want to disable inquiry notifiction as well. please help with the solution.
add_filter( 'wcfm_is_allow_enquiry', function( $is_allow ) { if( function_exists( 'wcfm_is_vendor' ) && wcfm_is_vendor() ) { $is_allow = false; } return $is_allow; }, 750 );
thanks in advance.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘disable inquiry notification’ is closed to new replies.