Hi,
That's possible yes.
Instead of the code:
foreach($this->shipping_groups as $shipping_group_key => $group) {
?>
<div class="hikashop_shipping_group">
you can use such code:
foreach($this->shipping_groups as $shipping_group_key => $group) {
?>
<div class="hikashop_shipping_group" <?php if($shipping_group_key=='XXX') echo 'style="display:none;"'; ?>>
where XXX is to be replaced by the group key of the warehouse that you want to hide.
You can echo it before if you want to know which one it is that you want to set there.