Edit File: small_items.tpl
<ul class="template-small-item"> {foreach from=$products item="product" name="products"} {assign var="obj_id" value=$product.product_id} {assign var="obj_id_prefix" value="`$obj_prefix``$product.product_id`"} {include file="common/product_data.tpl" product=$product} {hook name="products:product_small_item"} <li class="compact"> {assign var="form_open" value="form_open_`$obj_id`"} {$smarty.capture.$form_open nofilter} <div class="item-image product-item-image"> <a href="{"products.view?product_id=`$product.product_id`"|fn_url}">{include file="common/image.tpl" image_width="40" image_height="40" images=$product.main_pair obj_id=$obj_id_prefix no_ids=true}</a> </div> <div class="item-description"> {if $block.properties.item_number == "Y"}{$smarty.foreach.products.iteration}. {/if} {assign var="name" value="name_$obj_id"}{$smarty.capture.$name nofilter} <div class="margin-top"> {assign var="old_price" value="old_price_`$obj_id`"} {if $smarty.capture.$old_price|trim}{$smarty.capture.$old_price nofilter} {/if} {assign var="price" value="price_`$obj_id`"} {$smarty.capture.$price nofilter} </div> {assign var="add_to_cart" value="add_to_cart_`$obj_id`"} {if $smarty.capture.$add_to_cart|trim}<p>{$smarty.capture.$add_to_cart nofilter}</p>{/if} </div> {assign var="form_close" value="form_close_`$obj_id`"} {$smarty.capture.$form_close nofilter} </li> {/hook} {if !$smarty.foreach.products.last} <li class="delim"> </li> {/if} {/foreach} </ul>
Back to File Manager