Sample Flows

This article shares some possible use cases your implementation could support, as well as an example flow that could support each use case. You're certainly not limited to these use cases, but they can be a helpful jumping off point as you plan your implementation.

Display "most influential member" data

You can display the "most influential members" data to a site page or dashboard page, based on how many likes and comments each member's posts get.

  1. Collect per-member reaction numbers for the Wix Blog and/or Wix Forum apps by calling Get Activity Counters.
  2. Display the returned values.

Display "high priority customer" data

Create a counter for customer activities you consider to be highest priority, for example purchases, and display "high priority customer" data in a dashboard page, displaying the site members with the highest numbers of high-priority actions.

  1. Plan the relevant counters and define an identifying key for each.
  2. Track the relevant activity per site member.
  3. When a member takes a relevant action, call Set Activity Counters with the relevant key. The counter will be created for each member the first time you call this method to set the activity. Note that if your counter is public, all apps, site visitors and members can access it.
  4. When a Wix user opens the relevant dashboard page, collect activity counters per member by calling Get Activity Counters.
  5. Display the returned values.
Did this help?