in the UK version, look at around line 91 for this section of code:

PHP Code:
// disable the module if the order only contains virtual products
      
if ($this->enabled == true) {
        if (
$order->content_type == 'virtual') {
          
$this->enabled false;
        }
      }
    } 
change the one line to:

PHP Code:
//      $this->enabled = false; 
and you should be good to go.

best.