Summary Field Problem

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
TyMorris
Ensign (ENS)
Ensign (ENS)
Posts: 13
Joined: Fri Jun 05, 2009 5:49 am

Summary Field Problem

Post by TyMorris » Fri Aug 06, 2010 9:13 am

Hi,

Does anyone know of a way to disable the "read more" feature in the Summary field? For example, on the category page where all products are displayed, there is a certain character limit in this summary field. When reached, a "read more" link is added. I want to get rid of that so that the full character amount (1000 characters) can be displayed for all products. Any ideas? Thanks, as always

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Summary Field Problem

Post by mazhar » Sat Aug 07, 2010 4:49 am

Edit your Website/Conlib/CategoryGridPage4.ascx.cs file and locate following code

Code: Select all

if (tmpSummary.Length > MaximumSummaryLength)
and update it like

Code: Select all

if (false && tmpSummary.Length > MaximumSummaryLength)
save the changes and test again.

TyMorris
Ensign (ENS)
Ensign (ENS)
Posts: 13
Joined: Fri Jun 05, 2009 5:49 am

Re: Summary Field Problem

Post by TyMorris » Tue Aug 10, 2010 4:11 pm

Thanks Mazhar!!

Post Reply