HomeHome Product Discus... Product Discus...SmithCartSmithCartRemoving "Add to Cart" and "options" from Listing page onlyRemoving "Add to Cart" and "options" from Listing page only
Previous
 
Next
New Post
3/21/2011 10:56 AM
 

Hi

I am trying to create a clean product listing page without add to cart button and without "options" button. However, I require both on the product detail page.

Whenever I try to remove/disable them from the ProductsList.ascx file I get a module error.

Can someone please advise how I do this?

Thanks

Tony

 
New Post
3/22/2011 12:25 AM
 

 

You can do this by setting the <td> that holds the buttons to visible="false". If your using the single coluom layout, then  open the ProductList.ascx and find:

 

 <td style="text-align:center; width:100%;">
                                            <asp:Button ID="ibAddToCart2" runat="server" OnClick="btnAddBasket_Click" cssclass="orangeaddtocart" />
                                            <asp:Button ID="btnAddToRegistry2" runat="server" OnClick="btnAddToRegistry_Click" CssClass="orangeAddToRegistry" Visible="false" />
                                            <asp:Button ID="ibSelect2" runat="server" OnClick="btnSelect_Click" cssClass="orangenext" Visible="false" />
                                        </td>
 
Change this to:
 <td style="text-align:center; width:100%;" visible="false">
                                            <asp:Button ID="ibAddToCart2" runat="server" OnClick="btnAddBasket_Click" cssclass="orangeaddtocart" />
                                            <asp:Button ID="btnAddToRegistry2" runat="server" OnClick="btnAddToRegistry_Click" CssClass="orangeAddToRegistry" Visible="false" />
                                            <asp:Button ID="ibSelect2" runat="server" OnClick="btnSelect_Click" cssClass="orangenext" Visible="false" />
                                        </td>
If your using the multi-coluom layout, just add visible="false"  to the <td> for multi-level colums.
 
Thanks,
Christian 
 
 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartRemoving "Add to Cart" and "options" from Listing page onlyRemoving "Add to Cart" and "options" from Listing page only