removing summary from mobile category row display

For general questions and discussions specific to the AbleCommerce GOLD ASP.Net shopping cart software.
Post Reply
Chris Hadden
Commander (CMDR)
Commander (CMDR)
Posts: 182
Joined: Tue Jan 27, 2009 2:29 pm

removing summary from mobile category row display

Post by Chris Hadden » Tue Jun 16, 2015 6:59 am

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

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: removing summary from mobile category row display

Post by jmestep » Tue Jun 16, 2015 11:55 pm

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"
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

Chris Hadden
Commander (CMDR)
Commander (CMDR)
Posts: 182
Joined: Tue Jan 27, 2009 2:29 pm

Re: removing summary from mobile category row display

Post by Chris Hadden » Wed Jun 17, 2015 6:49 am

worked perfect thanks

Post Reply