Product Column Headings in Admin/Catalog/Products

How can I change the product column headings in the admin panel/catalog/products.



I want to edit all the weights and want weight to be one of the headings. Right now my columns are Code, Name, Price, List Price, Quantity, Status. I would like the columns to be, Code, Name, Weight, List Price, Quantity, Status. Is this possible? If so how?



Thanks



Gary

Yes, it is possible. If I recall correctly you need to modify /skins/admin/basic/view/products/update.tpl and maybe /core/fn_catalog.php.

I added a thumbnail to my product manager, the the code changes are similar.



You need to edit the file:



skins/basic/admin/views/products/manage.tpl



This is what the top of the table looks like originally:


```php





{if $search.cid && $search.subcats != “Y”}

{$lang.position_short}

{/if}

{$lang.code}

{$lang.name}

{$lang.price} ({$currencies.$primary_currency.symbol})

{$lang.list_price} ({$currencies.$primary_currency.symbol})

{$lang.quantity}

{hook name=“products:manage_head”}{/hook}

{$lang.status}


```

You'd want to change that to:

```php


{if $search.cid && $search.subcats != "Y"}
{$lang.position_short}
{/if}
{$lang.code}
{$lang.name}
{$lang.price} ({$currencies.$primary_currency.symbol})
{$lang.cost} ({$currencies.$primary_currency.symbol})
{$lang.weight}
{$lang.quantity}
{hook name="products:manage_head"}{/hook}
{$lang.status}

```

You see that I changed the percentages and I added the code:

```php {$lang.weight} ```

Unfortunately I don't know how to change the sort stuff around so this is the best I can do.

Then you also need to add:

```php
```

After:

```php
```

I've only done this in the 2.0.x series and not the 2.1 series, but I think the code is still the same.

Hope that helps,

Brandon