Thank you nicolas. I was able to style the one that goes to the customer but not sure how to style the one that goes to the seller. I add <br> and <b> in the code but it's giving me errors.
Can you give me some direction. I think this is the correct code:
$fieldsClass = hikashop_get('class.field');
$fields = $fieldsClass->getFields('frontcomp',$data,'order','');
foreach($fields as $fieldName => $oneExtraField) {
$fieldData = trim(@$data->$fieldName);
if(empty($fieldData)) continue;
echo "<br/>".$fieldsClass->trans($oneExtraField->field_realname).' : '.$fieldsClass->show($oneExtraField,$data->$fieldName);
}
Thanks!!