Remove thumbnails from recently viewed & more items, etc.

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
msrowan
Ensign (ENS)
Ensign (ENS)
Posts: 3
Joined: Tue Dec 14, 2010 9:03 am
Location: Chesapeake, VA
Contact:

Remove thumbnails from recently viewed & more items, etc.

Post by msrowan » Tue Dec 14, 2010 9:08 am

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.
Nobody does printing like Hackworth.
twitter.com/hackworthprints

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

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

Post by s_ismail » Tue Dec 14, 2010 10:05 am

You can hide/remove products thumbnails in these controls in ConLib /RecentlyViewed.ascx and ConLib/MoreCategoryItems.

msrowan
Ensign (ENS)
Ensign (ENS)
Posts: 3
Joined: Tue Dec 14, 2010 9:03 am
Location: Chesapeake, VA
Contact:

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

Post by msrowan » Tue Dec 14, 2010 1:15 pm

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.
Nobody does printing like Hackworth.
twitter.com/hackworthprints

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

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

Post by s_ismail » Wed Dec 15, 2010 5:50 am

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>

msrowan
Ensign (ENS)
Ensign (ENS)
Posts: 3
Joined: Tue Dec 14, 2010 9:03 am
Location: Chesapeake, VA
Contact:

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

Post by msrowan » Thu Dec 16, 2010 7:37 am

Thanks a lot. I'll give it a whirl.
Nobody does printing like Hackworth.
twitter.com/hackworthprints

Post Reply