View Single Post
  #9  
Old 02-21-2008, 05:02 AM
 
longhorn180 longhorn180 is offline
 

Senior Member
  
Join Date: Apr 2004
Location: Richmond, Virginia
Posts: 187
 

Default Re: Add extra field to Featured Products

If you want the author's name to appear beneath the title for a featured product you can edit customer/main/products_t.tpl and add this code right below the product title
Code:
{if $products[product].extra_fields ne ''} {foreach from=$products[product].extra_fields item=extra_field} {if $extra_field.service_name eq "author"} {if $extra_field.value ne ""} <b>by: {$extra_field.value}</b><br /> {/if} {/if} {/foreach} {/if}
This works just as well.
__________________
4.1.9 (Linux) Live Store
www.thecrackedbook.com
Find used books and out of print books.
Reply With Quote