=========================================================================== Show the short product description on the View Cart and Order Summary page: =========================================================================== =========================================================================== View Cart page (pc/viewCart.asp) Add the following ASP code right before the line that reads (~ line 147): <% 'BTO ADDON-S ASP code to add: <% 'Show short product description call opendb() mySQL="SELECT idproduct, sDesc FROM products WHERE idproduct=" & trim(pcCartArray(f,0)) set rsDesc=conntemp.execute(mySQL) psDesc=rsDesc("sDesc") if psDesc <> "" then %>   <%=psDesc%> <% End if call closeDb() set rsDesc=nothing 'End show short product description %> =========================================================================== Order Summary page (pc/orderVerify.asp) Add the following ASP code right before the line that reads (~ line 724): <% 'BTO ADDON-S ASP code to add: <% 'Show short product description call opendb() mySQL="SELECT idproduct, sDesc FROM products WHERE idproduct=" & trim(pcCartArray(f,0)) set rsDesc=conntemp.execute(mySQL) psDesc=rsDesc("sDesc") if psDesc <> "" then %>   <%=psDesc%> <% End if call closeDb() set rsDesc=nothing 'End show short product description %> ===========================================================================