Page 1 of 1
Removing "date" from customer's review on product page.
Posted: Sun Jun 05, 2011 7:18 pm
by pksd
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
Re: Removing "date" from customer's review on product page.
Posted: Mon Jun 06, 2011 2:10 am
by mazhar
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.
Posted: Wed Jun 08, 2011 6:17 pm
by pksd
It worked. Thank you.