Showing MSRP in version 7.0.7 (FeaturedProductsGrid)
Posted: Tue Sep 27, 2011 4:31 pm
We are upgrading from 7.0.2 to 7.0.7, and somewhere in there a change to the FeaturedProductsGrid has been made so that we can no longer show the MSRP. I have not found anything on the forums helping with this. In 7.0.2 we used the following code:
but copying that into FeaturedProductsGrid.ascx does not work. I assume that is because FeaturedProductsGrid.ascx.cs does not reference MSRP.
Can anyone help in getting both the sale price and MSRP showing in FeaturedProductsGrid? It is also not showing on the products page, and I assume the same will be true for the category pages (when I get there). It seems that somewhere between 7.0.2 and 7.0.7 changes have taken place that render the previous customizations useless, as our custom ConLib files just show errors, so we must redo much of that work.
Code: Select all
<strong>Reg: <span style="text-decoration: line-through"><asp:Label ID="Msrp" runat="server" CssClass="old_price" Visible="false"></asp:Label></strong></span>
<b class="highlight"><uc:ProductPrice ID="ProductPrice" runat="server" Product='<%#Container.DataItem%>' PriceLabel="Sale: "></uc:ProductPrice>
Can anyone help in getting both the sale price and MSRP showing in FeaturedProductsGrid? It is also not showing on the products page, and I assume the same will be true for the category pages (when I get there). It seems that somewhere between 7.0.2 and 7.0.7 changes have taken place that render the previous customizations useless, as our custom ConLib files just show errors, so we must redo much of that work.