Page 1 of 1

mod CategoryGridPage4.ascx

Posted: Fri Dec 05, 2008 9:14 am
by Reddirt
During phase 1 implementation we arent' going to have any products.
At the category level we want a list of manufacturers that supply that category.
So, I've edited the text for the category and chosen the "Category Grid Page With Category Data". And it shows the list of manufacturers.

But, it also shows boxes under "Displaying items - ....." for the sub-categories.
I'd like to get rid of those boxes. I'm assuming that I can comment out part of the code in "CategoryGridPage4.ascx". But, I'm having a hard time figuring out which code to comment out.

Any help?

Thanks,
Reddirt

Re: mod CategoryGridPage4.ascx

Posted: Fri Dec 05, 2008 12:59 pm
by jmestep
Around line 30 add visible="false" like sample below.
<asp:Localize visible ="false" ID="ResultIndexMessage" runat="server" Text="Displaying items {0} - {1} of {2}" EnableViewState="false"></asp:Localize>

Re: mod CategoryGridPage4.ascx

Posted: Mon Dec 08, 2008 8:29 am
by Reddirt
Judy,
Thank you !!!!!

Dave