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
removing summary from mobile category row display
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
- 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
It looks like you can change the setting in the Mobile/Category.aspx
Change
ShowSummary='<%#AbleContext.Current.Store.Settings.MobileStoreCatalogRowDisplay%>'
To
ShowSummary="False"
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")%>' />
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
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
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
Re: removing summary from mobile category row display
worked perfect thanks