On my "Front Page" I would like to add a character limit of 50 to (Notes.message:Notations) in CCv5. Once they click on a link it will take the user to the full text. Can anyone plz help.
Alex
Alex
<?php $row->xxx = substr($row->xxx, 0, 50); ?>
or maybe that needs to be $row['xxx'] in this version ???
Notes.message:<?php $row['message'] = substr($row['message'], 0, 50); ?>
<?php $row['message'] = substr($row['message'], 0, 50); ?>
Notes.message:<?php $row['message'] = substr($row['message'], 0, 50); ?>
I tried under PHP field
Notes.message:<?php $row['message'] = substr($row['message'], 0, 50); ?>
and
<?php $row['message'] = substr($row['message'], 0, 50); ?>
then I tried under Field
Notes.message:<?php $row['message'] = substr($row['message'], 0, 50); ?>
fieldNotes.message:return substr($cell, 0, 50);