Disable Map on all pages except map page template and widget
<?php
/**
* Disable Map on all pages except map page template and widget
*/
add_filter('wpcasa_place_property_search_map', 'custom_place_property_search_map');
function custom_place_property_search_map() {
return;
}