-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.4
Hi,
I created a few custom fields in the "order" table to get more info about customer.
I added th block "Custom field" in the check out process and it works!!
But I would like to change the display (not just css). so change the code below by adding one by one my custom fields and add more html
foreach($this->extraFields[$type] as $fieldName => $oneExtraField) {
if(isset($showfields[$fieldName]) && $this->step != $showfields[$fieldName]) {
echo '<tr style="display:none;"><td><input type="hidden" name="data['.$type.']['.$fieldName.']" value="'.$this->escape($this->$type->$fieldName).'"/></td></tr>';
continue;
}
?>
<tr class="hikashop_checkout_<?php echo $fieldName;?>_line" id="hikashop_<?php echo $type.'_'.$oneExtraField->field_namekey; ?>">
<td class="key">
<?php echo $this->fieldsClass->getFieldName($oneExtraField);?>
</td>
<td>
ex
<div>
custom_field_1
custom_field_2
</div>
<div>
custom_field_3
custom_field_4
</div>
Is there any tag or else to custom this part please? I need to display the label ant the input