Add-on Auto promote user to a certain group based on periodic post count

abdfahim

Well-known member
I am not sure if this is a feasible request. I have a custom group (let say "Active Members") and want to auto promote/demote members based on number of post they made in last X days.

Something like, running below routine once every day
Code:
if [count(Post) in last X days > Y] Then
       Add to "Active Members" group
else
      Remove to "Active Members" group
end

The idea is, I want to offer incentives to the regular members, not based on total historical post count.
 
I am not sure if this is a feasible request. I have a custom group (let say "Active Members") and want to auto promote/demote members based on number of post they made in last X days.

Something like, running below routine once every day
Code:
if [count(Post) in last X days > Y] Then
       Add to "Active Members" group
else
      Remove to "Active Members" group
end

The idea is, I want to offer incentives to the regular members, not based on total historical post count.
Maybe this is what you are looking for with user promotion
https://xenforo.com/community/resources/cta-criteria.3006/ ;)
 
Top Bottom