How to Implement a Like feature
Lets say this is related to an activity:
Create two new fields, one called "Like" which is a checkbox and one called "# Likes" which is a number and defaults to zero to start.
A user can click the Like box which initiates a workflow to increment the # Likes field by 1 and then resets the Like field to unchecked.
Anyone have other ideas on how to solve this requirement?