Please add this kind to your MyHome Child Theme functions.php file. If you are not familiar with Child Themes please check this article - How to use Child Theme? How to change files (php / css / js) and keep theme future update compatibility?
add_action('admin_head', 'myhome_hide_location_tab');
function myhome_hide_location_tab() {
echo '<style>
.acf-tab-wrap.-top > ul > li:nth-child(2) {
display: none!important;
}
</style>';
}