1. Download the plugin Kepler Custom Fields
  2. Create a SIL Script Custom Field
  3. In the custom field configuration set a new script like this:
  4. number [] comments = getAllCommentIds(key); string txt =""; for(number x in comments) { string[] cmt= getCommentById(x); if(contains(cmt["text"], "important") ){ txt= "Updated " + cmt["updated"] + " by " + cmt["author"] + " : " + cmt["text"]; } //txt = txt + cmt["text"]; } return txt;
  5. Insert the custom field in the dashboard
  6. That’s all!
Posted by:.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s