chpimenta That is really awesome.
If you want a better one, try
.store-rating-block {display: none;}
.store-distance-block {display: none;}
.store-avgprice-block {display: none;}
So for a specific restaurant, where you want to hide the Menu button, and the detail blocks, the code which goes in the Meta Data Custom HTML becomes
<style>
.store-rating-block {display: none;}
.store-distance-block {display: none;}
.store-avgprice-block {display: none;}
.btn-menu-list {display: none;}
</style>
And to globally hide it... just paste the below code in Settings -> Custom CSS
.store-rating-block {display: none !important;}
.store-distance-block {display: none !important;}
.store-avgprice-block {display: none !important;}
.btn-menu-list {display: none !important;}