View Single Post
  #2  
Old 03-10-2003, 09:37 AM
 
funkydunk funkydunk is offline
 

X-Man
  
Join Date: Oct 2002
Location: Cambridge, UK
Posts: 2,210
 

Default

The template that displays the product details is skin1/customer/main/product.tpl

If you amend the code by adding by a conditional around the add to cart/price part along the lines of:

{if $smarty.section.products.index eq 16}
email me for details
{else}
the normal price display bits
{/if}

where 16 is the product id that you want to show the email detail for.

If this is more than one product then change it to:

{if ($smarty.section.products.index eq 16) or ($smarty.section.products.index eq 19)}
__________________
ex x-cart guru
Reply With Quote