Hi all,

Where in the admin menu can i limit the amount of words to be shown for each thumbnail in the image module galleries?

Many thanks..

Nick

Comments

Nick Wilson’s picture

Well, I worked it out.

If you want to do this, go to line 1360 in image.module and look for the $image-teaser bit.

Change that to:

substr($image->teaser,0,100) // starts at 0 ends at char 100 -> change as u see fit ;-)

Nick