Hey guys!
Im feeling so close to resolve my problem, but its still getting errors.
So I would like to show custom fields on product details page, but only few products have this option.
This code works only for products with custom field:
<?php
$custom_title = null;
foreach ($this->product->customfieldsSorted['normal'] as $field) {
if ( $field->is_hidden )
continue;
if ($field->display) {
?>
<span class="product-field-display"><?php echo $field->display; }} ?></span>
If product hasn't custom field it shows
QuoteWarning: Invalid argument supplied for foreach() in
Any idea?