Hello,
I would like to have some custom fields on the checkout page at different positions.
With that there are everytime on the same position, because of the foreach loop i think:
if ($customfields) {
$pdf->Ln();
foreach ($customfields as $customfield) {
$pdf->Cell(0, 4, $customfield['fieldname'] . ': ' . $customfield['value'], 0, 1, 'L');
}
}
How can I define a specific customfield, to have them on different positions?
Hope you can help.
Thanks!