So here I found the fields that are present on the order form.
<tr>
<td width="35%"><?php echo $eshop->lng->COMPANYTITLE; ?></td>
<td><input type="text" name="bcompany" id="bcompany" class="eshoplongbox" title="<?php echo $eshop->lng->COMPANYTITLE; ?>" value="<?php echo $row->bcompany; ?>" /></td>
</tr>
<tr>
<td><?php echo $eshop->lng->COMPANYACTIV; ?></td>
<td><input type="text" name="bcompanyactiv" id="bcompanyactiv" class="eshoplongbox" title="<?php echo $eshop->lng->COMPANYACTIV; ?>" value="<?php echo $row->bcompanyactiv; ?>" /></td>
</tr>
<tr>
<td><?php echo $eshop->lng->AFM; ?></td>
<td><input type="text" name="bafm" id="bafm" class="eshopbox" dir="ltr" title="<?php echo $eshop->lng->AFM; ?>" value="<?php echo $row->bafm; ?>" /></td>
</tr>
<tr>
<td><?php echo $eshop->lng->IRS; ?></td>
<td><input type="text" name="birs" id="birs" class="eshopbox" dir="ltr" title="<?php echo $eshop->lng->IRS; ?>" value="<?php echo $row->birs; ?>" /></td>
</tr>
Now I need to add 2 more fields to those. Am I right?
I suppose I need to modify the database to make room for the data.
And from there I need to modify the order display in eshop backend to reuse the submitted info. 2 or 3 fields more.
Can you tell me, will this work and am I missing something?
Thanks!