hi did you try adding p.extra_field_2 to the listing sql in includes/index_filters/default_filter.php like below
PHP Code:
$listing_sql = "select " . $select_column_list . " p.products_id, p.products_type, p.master_categories_id, p.manufacturers_id, p.products_price, p.extra_field_2, p.products_tax_class_id, pd.products_description, if(s.status = 1, s.specials_new_products_price, NULL) AS specials_new_products_price, IF(s.status = 1, s.specials_new_products_price, p.products_price) as final_price, p.products_sort_order, p.product_is_call, p.product_is_always_free_shipping, p.products_qty_box_status
from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id , " .
TABLE_PRODUCTS_DESCRIPTION . " pd, " .
TABLE_MANUFACTURERS . " m, " .
TABLE_PRODUCTS_TO_CATEGORIES . " p2c
where p.products_status = 1
and p.manufacturers_id = m.manufacturers_id
and m.manufacturers_id = '" . (int)$_GET['manufacturers_id'] . "'
and p.products_id = p2c.products_id
and pd.products_id = p2c.products_id
and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
and p2c.categories_id = '" . (int)$_GET['filter_id'] . "'" .
$alpha_sort;
there is a few instances of it to add to
then in includes/modules/product_listing.php add the following code where you want it to show,
PHP Code:
$listing->fields['extra_field_2']
i added it right after name code
PHP Code:
$listing->fields['products_name']
there were 2 instances
this will hopefully get you going on in categories listing
then in includes/modules/pages/products_all/header_php.php add the field to the $products_all_query_raw and then add $products_all->fields['extra_field_2'] to tpl_modules_products_all_listing.php
then do the same for each page you want it in,
bn