Files
interblue.pl/modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl
2024-10-25 14:16:28 +02:00

35 lines
1.4 KiB
Smarty

<span class="product-quantity">{$product.quantity}</span>
<span class="product-name">{$product.name}</span>
<span class="product-price">{$product.price}</span>
<a class="remove-from-cart"
rel="nofollow"
href="{$product.remove_from_cart_url}"
data-link-action="remove-from-cart"
>
{l s="Remove" d="Shop.Theme.Actions"}
</a>
{if $product.customizations|count}
<div class="customizations">
<ul>
{foreach from=$product.customizations item="customization"}
<li>
<span class="product-quantity">{$customization.quantity}</span>
<a href="{$customization.remove_from_cart_url}" class="remove-from-cart" rel="nofollow">{l s='Remove' d="Shop.Theme.Actions"}</a>
<ul>
{foreach from=$customization.fields item="field"}
<li>
<label>{$field.label}</label>
{if $field.type == 'text'}
<span>{$field.text}</span>
{elseif $field.type == 'image'}
<img src="{$field.image.small.url}">
{/if}
</li>
{/foreach}
</ul>
</li>
{/foreach}
</ul>
</div>
{/if}