To show the product summary field on the product listing page do the following:
- Open up the productslist.ascx page located in \desktopmodules\smith.buynow folder
- On line 62 of the productslist.ascx change the visible property from false to true as highlighted in yellow below
- Save your changes
<tr runat="server" visible="false">
<td>
<asp:Label runat="server" ID="lblSummary" Text='<%# DataBinder.Eval(Container.DataItem, "Summary") %>' style="float:left; text-align:left;"/>
</td>
</tr>
In the next version we are going to add a check in the cart settings to show/hide the product summary field on the product listing page to make it easier to do this. Fyi, on the product details page there is already a checkbox to show/hide the product summary field.
-Scott