Files
shopPRO/templates/shop-basket/_partials/product-custom-fields.php
2024-10-23 13:44:50 +02:00

13 lines
369 B
PHP

<? if ( $this -> custom_fields ): foreach ( $this -> custom_fields as $key => $val ):?>
<div class="custom-field">
<div class="_name">
<?
$custom_field = \shop\ProductCustomField::getFromCache( $key );
echo $custom_field['name'] . ':';
?>
</div>
<div class="_text">
<?= $val;?>
</div>
</div>
<? endforeach; endif;?>