View Single Post
  #3  
Old 01-10-2003, 05:17 PM
 
Jeannie Jeannie is offline
 

eXpert
  
Join Date: Sep 2002
Location: Texas
Posts: 257
 

Default

my eyes are crossed at this point
Wanted to change the auto assigned productid to my sku instead.
tried this change and admin couldn't modify any products

using 3.3.1
did this in main/products.tpl
CHANGED:
Code:
<td width=1%>#{$products[cat_num].productid}</td> <td width=99%>

TO:
Code:
<td width=1%>#{$products[cat_num].productcode}</td> <td width=99%>

And in include/func.php
CHANGED:
Code:
//$product["producttitle"]="$product[product] $product[brand] $product[model] #$product[productid]";

TO:
Code:
//$product["producttitle"]="$product[product] $product[brand] $product[model] #$product[productcode]";
Reply With Quote