dbarnes Posted October 18, 2006 Posted October 18, 2006 I have all of my optional products in place but I would like to rearrange their display order on the site. Any ideas?
Guest Posted October 18, 2006 Posted October 18, 2006 In product_info.php line 131 $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name"); the last comment controls the order: order by popt.products_options_name
Recommended Posts
Archived
This topic is now archived and is closed to further replies.