Hello,
Is it possible for me to display products' RRPs in the search results? Preferably below the Minprice. I found the following code, and tried to add it to its own div below the "minprice" div in ProductTemplateSearchResult.ascx, but to no avail:
<asp
anel EnableViewState="false" ID="pnlRRP" runat="server" Visible='<%# KartSettingsManager.GetKartConfig("frontend.versions.display.showrrp") = "y" And Eval("V_RRP") > 0 %>'>
<span class="rrp">
<asp:Literal EnableViewState="false" ID="litContentText_RRP" runat="server" Text="<%$ Resources: Versions, ContentText_RRP %>" />
<span class="figure">
<asp:Literal ID="litRRP" runat="server" Text='<%# Eval("V_RRP") %>' EnableViewState="false" /></span></span>
</aspanel>
Thank you,
Glen