I dont find the testimonial module on Calla Exterior template.
to remove google maps you need to remove below script from template index.php
and you need to disable maps module in backend module manager
<?php if (JRequest::getVar('option') == 'com_contact' && $this->params->get('map')) : ?>
var map;
var myCenter=new google.maps.LatLng('<?php echo $latitude ?>', '<?php echo $longitude ?>');
function initialize()
{
var mapProp = {
center:myCenter,
zoom:13,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
var marker=new google.maps.Marker({
position:myCenter
});
<?php if ($this->params->get('marker')) : ?>
marker.setMap(map);
<?php endif; ?>
var infowindow = new google.maps.InfoWindow({
content:'<?php echo $markerdescription; ?>'
});
infowindow.open(map,marker);
}
google.maps.event.addDomListener(window, 'load', initialize);
<?php endif; ?>