Hi @Bert this is the fix:
In extensions/cart_module/controllers/Cart_module.php find the line 286-288
[php]if ($this->location->isClosed() OR ! $this->location->checkOrderType()) {
$data['button_order'] = '<a class="btn btn-default btn-block btn-lg" href="' . site_url('checkout') . '"><b>' . $this->lang->line('text_is_closed') . '</b></a>';
}[/php]
And change for this:
[php]if ($this->location->isClosed()) {
$data['button_order'] = '<a class="btn btn-default btn-block btn-lg" href="' . site_url('checkout') . '"><b>' . $this->lang->line('text_is_closed') . '</b></a>';
}[/php]