Salvage. Posted December 31, 2005 Share Posted December 31, 2005 Hey, I've been reading and testing code for about a week now and I just can't seem to figure out how to add the Product Model field to the shoppingcart.php page. If anyone has any tips on how to do this it would be greatly appreciated. Link to comment Share on other sites More sharing options...
boxtel Posted December 31, 2005 Share Posted December 31, 2005 Hey, I've been reading and testing code for about a week now and I just can't seem to figure out how to add the Product Model field to the shoppingcart.php page. If anyone has any tips on how to do this it would be greatly appreciated. change : ' <td class="productListing-data" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '"><b>' . $products[$i]['name'] . '</b></a>'; to : ' <td class="productListing-data" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '"><b>' . $products[$i]['name'] . '</b><br>'.$products[$i]['model'] . '</a>'; Treasurer MFC Link to comment Share on other sites More sharing options...
Salvage. Posted December 31, 2005 Author Share Posted December 31, 2005 Thank you very much. Is there a way to make it it's own column? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.