first commit
This commit is contained in:
13
templates/shop-basket/_partials/product-custom-fields.php
Normal file
13
templates/shop-basket/_partials/product-custom-fields.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<? 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;?>
|
||||
Reference in New Issue
Block a user