View Single Post
  #2  
Old 06-25-2010, 03:21 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Make extra field clickable

You just have to put the field value in an <a> tag. Look in skin1/modules/Extra_Fields/product.tpl

You can replace
<td class="property-value">{$v.field_value}</td>
with
<td class="property-value">
{if $v.field eq "yyyy"}
<a href="{$v.field_value}">xxxx</a>
{else}
{$v.field_value}
{/if}
</td>
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote