Vous devez ajouter le code avant:
<?php if($this->invoice_type=='full' && !empty($this->element->billing_address)){?>
Et les information sont dans l'objet PHP
$this->element->billing_address, pour voir son contenu faites comme cela:
<?php var_dump($this->element->billing_address); ?>
Après de simple
echo des variables désirées est nécessaire, exemple:
<?php echo $this->element->billing_address->address_title.' '.$this->element->billing_address->address_firstname.' '.$this->element->billing_address->address_lastname.'<br/>';
echo $this->element->billing_address->address_street.'<br/>';
echo $this->element->billing_address->address_postcode.' '.$this->element->billing_address->address_city;