Page 1 of 1

removing summary from mobile category row display

Posted: Tue Jun 16, 2015 6:59 am
by Chris Hadden
In the mobile store, using the row display. I would like to have just the title, price and add to cart button displayed. I do not want the summary and the sku showing. Is that easy to do? Thanks
Chris

Re: removing summary from mobile category row display

Posted: Tue Jun 16, 2015 11:55 pm
by jmestep
It looks like you can change the setting in the Mobile/Category.aspx

Code: Select all

<uc1:ProductItemDisplay ID="ProductItemDisplay1" runat="server" Item='<%# Container.DataItem %>' ShowRating="true" ShowAddToCart="true" 
                                        ShowSku='<%#AbleContext.Current.Store.Settings.MobileStoreCatalogRowDisplay%>' 
                                        ShowSummary='<%#AbleContext.Current.Store.Settings.MobileStoreCatalogRowDisplay%>' 
                                        MaxSummaryLength = "100"
                                        ShowManufacturer='<%#AbleContext.Current.Store.Settings.MobileStoreCatalogRowDisplay%>' 
                                        ClientIDMode="Predictable" alt='<%#Eval("ImageAltText")%>' />
Change
ShowSummary='<%#AbleContext.Current.Store.Settings.MobileStoreCatalogRowDisplay%>'
To
ShowSummary="False"

Re: removing summary from mobile category row display

Posted: Wed Jun 17, 2015 6:49 am
by Chris Hadden
worked perfect thanks