Brand Visible As A Link

Hi,

I have tried to get brands working as links, however I couldn't find any function or what I found didn't work.

{$features = $product|fn_get_product_features_list}
    {foreach from=$features item="feature"}
        {if $feature.description == "activation"} 
          
{$feature.variant} -should be a link
{/if} {/foreach}

Try something like

{$features = $product|fn_get_product_features_list}
{foreach from=$features item="feature"}
{if $feature.description == "activation"} 
{if $feature.feature_type == 'E'}{/if}{$feature.variant}{if $feature.feature_type == 'E'}{/if}
{/if} {/foreach}

Feature should have the Brand type

(!) Not tested

Working! Thank you. May I know where you got knowledge about features adaptations? I could only find few examples of forums, nothing on owners website.

Working! Thank you. May I know where you got knowledge about features adaptations? I could only find few examples of forums, nothing on owners website.

Many years of experience with CS-Cart

What file to edit ? Thanks

What file to edit ? Thanks

I think, @HareRama used custom template or HTML block

Never mind, found out this

https://forum.cs-cart.com/topic/47370-manufacturer-link-on-product-details-page/?fromsearch=1

I think, @HareRama used custom template or HTML block