Wordt factuuradres tekst weergegeven terwel dit het afleveradres moet zijn op de Pakbon.
Voor wie dit nog niet heeft aangepast, hieronder de oplossing.
Dit betreft OC versie 2.1.0.2
Zoek:
Code: Select all
<table class="table table-bordered">
<thead>
<tr>
<td style="width: 50%;"><b><?php echo $text_payment_address; ?></b></td>
<td style="width: 50%;"><b><?php echo $text_contact; ?></b></td>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $order['shipping_address']; ?></td>
<td><?php echo $order['email']; ?><br/>
<?php echo $order['telephone']; ?></td>
</tr>
</tbody>
</table>
Code: Select all
<table class="table table-bordered">
<thead>
<tr>
<td style="width: 50%;"><b><?php echo $text_shipping; ?></b></td>
<td style="width: 50%;"><b><?php echo $text_contact; ?></b></td>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $order['shipping_address']; ?></td>
<td><?php echo $order['email']; ?><br/><?php echo $order['telephone']; ?></td>
</tr>
</tbody>
</table>