galey1981 Posted February 13, 2009 Posted February 13, 2009 Hi all i have tweaked my code to look like this: case 'PRODUCT_LIST_NAME': $lc_align = ''; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' . $listing['products_id']) . '"><b>' . $listing['products_name'] . '</a></b><br>' . $listing['short_desc'] . '</b>'; } else { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing['products_id']) . '"><b>' . $listing['products_name'] . '</a></b><br>' . $listing['short_desc'] . '</b><br><br><b>Manufacturer:</b> ' . $listing['manufacturers_name'] . '<br><b>Qty in stock:</b> ' . $listing['products_quantity'] . '<br><b>Weight:</b> ' . $listing['products_weight'];} break; This presents the product name and then underneath it gives the manufacturer, qty in stock, and weight. I turn on the manufacturer, weight, and stock qty in the admin panel and it makes the values appear in the correct place. but it also makes each of these fields appear in their own column. I want to keep the values appearing in my PRODUCT_LOST_NAME case, but i don't want them to appear in their own dedicated column. What can i do to stop these additional columns from appearing? Thanks!! David
Recommended Posts
Archived
This topic is now archived and is closed to further replies.