Template selection
Route each Secutix ticket to the right Wallet Crew template. Use a pass type finder hook, the `WALLET` comfort variable, subtype mapping, or the connector default.
Every Secutix ticket that reaches The Wallet Crew must be rendered with a Wallet Crew template. Template selection is the routing logic that chooses that template per ticket.
It becomes useful as soon as one Event Ticket template can’t cover all variants. Think VIP vs standard, season vs single-entry, different barcode formats, or different legal text.
Mapping options
The connector resolves a template name for each ticket. It evaluates the rules below in order. First match wins.
Resolution order (highest priority first)
Pass type finder hook.
Secutix comfort variable
WALLET.Product family subtype mapping.
Default template configured for the connector.
Once routing is clear, implement your end-user flows in Distribution.
Pass type finder hook (advanced)
Use this when routing depends on any Secutix field(s). This is a an advanced configuration. Treat it as a last resort and keep it rare because it adds custom logic to maintain. The template engine already supports conditions and variables, which is enough in most cases.
If this hook returns a template name, it overrides WALLET, subtype mapping, and the connector default.
Add a custom script in the Advanced tab of the Secutix configuration page.
WALLET comfort variable
Add a Secutix comfort variable on the targeted event named WALLET (all caps). Set its value to the exact Wallet Crew template name. This value is case-sensitive, so VIP_Template is not the same as vip_template. Avoid leading or trailing spaces.
This is evaluated only if the pass type finder hook returns null.
Product family subtype mapping
This is the default routing mode when no hook or WALLET override is used.
The connector reads the ticket’s product family subtype, then translates it into a Wallet Crew template name. You configure the subtype → template mapping once in the Secutix connector settings. That keeps routing stable across events and orders.
You can configure it on the Secutix configuration screen page :

Connector default template
If the hook returns null, WALLET is not set, and no subtype mapping matches, the connector uses its configured default template.
Use this as a safety net. Keep it compatible with “most tickets”.
Additional information
For a quick refresher on how Wallet Crew templates are structured, start with Pass types & templates. When you’re ready to create or adjust the Event Ticket template (and map Secutix fields into it), use Wallet pass template & field mapping.
Last updated

