Is there a way to remove date from customer's review on products page. Right now it says "..by xxxx on xx/xx/xxxx". Just want to display name not the date.
Thanks
PK
Removing "date" from customer's review on product page.
Re: Removing "date" from customer's review on product page.
You need to edit ConLib/ProductReviewsPanel.ascx file and then find and remove following line of code from file
Code: Select all
<asp:Label ID="ReviewDate" runat="server" Text='<%# Eval("ReviewDate", "on {0:d}") %>'></asp:Label>
Re: Removing "date" from customer's review on product page.
It worked. Thank you.