View Single Post
  #3  
Old 10-14-2003, 09:42 AM
 
captainjackprogrammer captainjackprogrammer is offline
 

Member
  
Join Date: Sep 2003
Posts: 15
 

Default

I am not quite sure you understand what was my question (or I understand your post), but let me try to explain again:
if you go to
http://php1.secure-shopping.com/peakseasons/customer/home.php?cat=3
you will be able to see just Case price under Product name and its description.
If you click on "see setails" you will see Unit price and Pack as well.
I need to put Unit Price and Pack info on http://php1.secure-shopping.com/peakseasons/customer/home.php?cat=3 page too.

Is it possible? Can I use the code you already posted?

Thanks!




Quote:
Originally Posted by Gibberish
K i think what you want to do is display the extra field on the product.tpl right?

K say you want it to display under the product name. You would take the product name code on the products.tpl:

<td valign=top> {$products[product].model} {$products[product].product}</font>
<font size=1>




//Lets say Case price is param00, Unit Price is param01 and Pack
//is param02

Case Price: {$products[product].param00}

Unit Price: {$products[product].param01}

Pack: {$products[product].param02}


That would display the param's under the product name on the products.tpl page.

Hope that helped.
Reply With Quote