hi there, i would like to limit the length of a comment in thumbnail view, because it messes up the template
is the anyway to do this?
thanks alot for reading
Vargha~
AFAIK you can't show comment under thumbnails on standard CPG
Are you using a MOD to display comment on thumbnail view ?
- Post a refernce to that mod
if you talk about the last comments meta album, then it's already limited to 50 chars. To change that find in functions.inc.php
$msg_body = utf_strlen($msg_body) > 50 ? utf_substr($msg_body,0,50).'...': $msg_body;
and change it to your needs
thanks alot, problem solved :)