We have a few products that will have kit options. When a user clicks "buy" it takes them to the product detail page. This is confusing to the user especially since products that don't have a kit go right to the basket.
I want to display those options so that products can be purchased right from the category pages if desired. I looked around in the code and couldn't find anything that seemed to reference or pull these options. I tried adding the code below to my category display:
Code: Select all
<asp:PlaceHolder runat="server" id="phOptions" EnableViewState="false"></asp:PlaceHolder>
<asp:PlaceHolder ID="phAddToBasketWarningOpt" runat="server" EnableViewState="false" Visible="false">
<asp:Label ID="AddToBasketWarningOpt" runat="server" EnableViewState="false" SkinID="ErrorCondition" Text="Please make your selections above."></asp:Label>
</asp:PlaceHolder>
<asp:PlaceHolder runat="server" id="phKitOptions" EnableViewState="false"></asp:PlaceHolder>
<asp:PlaceHolder ID="phAddToBasketWarningKit" runat="server" EnableViewState="false" Visible="false">
<asp:Label ID="AddToBasketWarningKit" runat="server" EnableViewState="false" SkinID="ErrorCondition" Text="Please make your selections above."></asp:Label>
</asp:PlaceHolder>
Has anyone done this already? Searching didn't turn up much on the forums.
Thanks,
Dappy