Hello Stephen!
GOOD NEWS I MAY HAVE FIGURED IT OUT!!!!!!!
I was looking at why it was showing the list of products in account_history_info.php and not any other page!
What the shopping_cart.php and etc lack is "pd.products_description" in the
$products_query = tep_db_query
In shopping_cart.php I changed line 273 from:
$products_query = tep_db_query("select p.products_id, pd.products_name, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_tax_class_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$products_id . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
to this:
$products_query = tep_db_query("select p.products_id, pd.products_description, pd.products_name, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_tax_class_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$products_id . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
Notice the pd.products_description - now I can see the listing of products in the shopping cart!
Just want your confirmation that I am doing the right thing before i continue!
Regards
Jiten