Limit the number of user votes per month
Here’s a video on how to limit the number of user votes per month.
string [] votesMonth;
string userProps;
int month = month(currentDate()) - 1;
userProps = getUserProperty(currentUser(), "votesMonth");
if(isNotNull(userProps)) {
votesMonth = userProps;
if(isNotNull(votesMonth[month])) {
int count = votesMonth[month];
if(count >= 3) {
lfHide("votes");
}
}
}
, multiple selections available, Use left or right arrow keys to navigate selected items
Need support? Create a request with our support team.
Copyright © 2005 - 2025 Appfire | All rights reserved.