Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 12, 2021 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save propertyhive/f08b778e88dd282a93a8cc4fe917b379 to your computer and use it in GitHub Desktop.
Save propertyhive/f08b778e88dd282a93a8cc4fe917b379 to your computer and use it in GitHub Desktop.
Don't do/show open enquiry count in admin menu
add_filter( 'propertyhive_show_admin_menu_enquiry_count', 'dont_do_admin_menu_enquiry_count' );
function dont_do_admin_menu_enquiry_count($show)
{
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment