Page 1 of 1

Remove thumbnails from recently viewed & more items, etc.

Posted: Tue Dec 14, 2010 9:08 am
by msrowan
Our product images are pretty boring so we're not adding them. I would like to remove the thumbnails in the sidebars and in the "more items like these" section. Just not sure where I can do that. Any help on where I can edit those is greatly appreciated.

http://216.54.107.194/Product.aspx?Prod ... egoryId=16

Thanks.

Re: Remove thumbnails from recently viewed & more items, etc.

Posted: Tue Dec 14, 2010 10:05 am
by s_ismail
You can hide/remove products thumbnails in these controls in ConLib /RecentlyViewed.ascx and ConLib/MoreCategoryItems.

Re: Remove thumbnails from recently viewed & more items, etc.

Posted: Tue Dec 14, 2010 1:15 pm
by msrowan
Sorry, but I'm not familiar enough with the system to know where I can edit those files. Where can I edit the ConLib files? Thanks.

Re: Remove thumbnails from recently viewed & more items, etc.

Posted: Wed Dec 15, 2010 5:50 am
by s_ismail
For Recently Viewed Items locate this code in ConLib /RecentlyViewed.ascx file

Code: Select all

<asp:Image ID="Thumbnail" runat="server" CssClass="PIVThumnail"/>
and replace with this one

Code: Select all

<asp:Image ID="Image1" runat="server" Visible="false" CssClass="PIVThumnail"/>
For More Items locate this code in ConLib/MoreCategoryItems.ascx file

Code: Select all

<asp:Literal ID="phThumbnail" runat="server" Text='<%#GetThumbnail(Container.DataItem)%>'></asp:Literal>
and replace with this one

Code: Select all

<asp:Literal ID="Literal1" runat="server" Visible="false"  Text='<%#GetThumbnail(Container.DataItem)%>'></asp:Literal>

Re: Remove thumbnails from recently viewed & more items, etc.

Posted: Thu Dec 16, 2010 7:37 am
by msrowan
Thanks a lot. I'll give it a whirl.