Program Settings
Overview
Program Settings is the central screen for managing global settings for your Loyalty Program. The screen includes a wide range of configuration settings, organized into categories.
Note: Modifying the configuration options on the Program Settings screen can have a critical impact on the operations of your Loyalty account. If you have any questions about any of the Program Settings, please speak to your Client Services representative for assistance.
Access
To access the Program Settings screen, select Program from the Main Navigation Menu, then select Settings > Program Settings from the Sub-Category menu.
Features
The Program Settings screen provides the following features:
|
|
|
|
|
|
Attribute Name |
Value |
First Name |
{{member.first_name}} |
Last Name |
{{member.last_name}} |
To display the Points the Member needs to reach their next Reward:
Attribute Name |
Value |
Points Remaining |
{{member.points_remaining}} |
The balance of any Metric can be added using the format shown for each of the examples below.
To display the Member's current Point balance:
Attribute Name |
Value |
Qualified Points |
{{current_qualified_points_balance}} |
To display the Member's lifetime visits:
Attribute Name |
Value |
Lifetime Visits |
{{current_lifetime_visits_balance}} |
To display the Member's qualified purchases:
Attribute Name |
Value |
Qualified Purchases |
{{current_qualified_purchases_balance}} |
For implementations using Coupon Offers as rewards, the list of available Offer rewards can be added using the following example format (syntax):
{{offer_responses | size}}
{% for offer_responses in offer_responses%}{{ offer_responses.offer_label }} Exp {{ offer_responses.usage_end | timezone: "Pacific/Honolulu" | date: "%m/%d/%Y" }}
{% endfor %)
Always start with specifying the keyword, such as: {{offer_responses | size}}
Always follow with the loop start, such as: {% for offer_responses in offer_responses%}
Include the following if the requirement is to display the offer label: {{ offer_responses.offer_label }}
Include the following if the requirement is to display the expiry date when relative time zones are in use: Exp {{ offer_responses.usage_end | timezone: "Pacific/Honolulu" | date: "%m/%d/%Y" }}
Include the following if the requirement is to display the expiry date when relative some zones are not in use: Exp {{ offer_responses.usage_end}}
Always end with the loop end, such as: {% endfor %)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|