Showing thumbnail images for categories in left nav

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Showing thumbnail images for categories in left nav

Post by mazhar » Mon Dec 22, 2008 11:45 am

If you want to show the category images instead of text as links in the left navigation then you need to edit the ConLib/SimpleCategoryList.ascx file and locate the following line of code

Code: Select all

<li><asp:HyperLink ID="CategoryLink" runat="server"  Text='<%#Eval("Name")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>
and make it look like

Code: Select all

<li><asp:HyperLink ID="CategoryLink" runat="server" ImageUrl='<%#Eval("ThumbnailUrl")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>
Now from the admin side adjust your category Thumbnails and left nav will show images instead of text.

Post Reply