Page 1 of 1

Summary Field Problem

Posted: Fri Aug 06, 2010 9:13 am
by TyMorris
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

Re: Summary Field Problem

Posted: Sat Aug 07, 2010 4:49 am
by mazhar
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.

Re: Summary Field Problem

Posted: Tue Aug 10, 2010 4:11 pm
by TyMorris
Thanks Mazhar!!