Hi,
I’m using cs-cart 4.1.x
Is it possible to to display only one feature on brand scroller in frontpage?
The code to be changed is located in themes>templatename>templates>blocks>our_brands.tpl
<br />
{foreach from=$brands item="brand" name="for_brands"}<br />
<br />
<div class="jscroll-item"><br />
{assign var="obj_id" value="scr_`$block.block_id`000`$brand.variant_id`"}<br />
<br />
{include file="common/image.tpl" assign="object_img" class="grayscale" image_width=$block.properties.thumbnail_width image_height=$block.properties.thumbnail_width images=$brand.image_pair no_ids=true}<br />
<div class="center"><br />
<a href="{"product_features.view?variant_id=`$brand.variant_id`"|fn_url}">{$object_img nofilter}</a><br />
</div><br />
</div><br />
<br />
{/foreach}
```<br />
<br />
after the {foreach} I tried {if $feature_id == "117"} but that doesn't work.Does anyone know how to specify only items from a specific feature id?<br />
<br />
Thanks in advance.