--- uc_extra_column.module 2008-03-21 15:05:06.000000000 +1100 +++ uc_extra_column.module.teaser 2008-03-25 14:06:10.000000000 +1100 @@ -41,6 +41,11 @@ function uc_extra_column_table_alter($ta 'weight' => 5, 'enabled' => true, ); + $fields[] = array('name' => 'teaser', + 'title' => t('Teaser'), + 'weight' => 2, + 'enabled' => false, + ); return $fields; @@ -50,6 +55,7 @@ function uc_extra_column_table_alter($ta $product = node_load($product_id); $data['weight'][] = $product->weight.$product->units; $data['add_options'][] = theme('uc_product_add_to_cart', $product); + $data['teaser'][] = $product->teaser; } return $data;