eventyay-tickets
eventyay-tickets copied to clipboard
Integrate Check-in and Lead Scanning into a Single QR Code
Currently, the Badges plugin allows the addition of two separate QR codes on badges: one for Check-in and another for Lead-scanning. To simplify the badge design and improve usability, we propose integrating both functionalities into a single QR code.
Enhancement:
If possible combine the Check-in and Lead-scanning functionalities into a single QR code on badges. This will streamline the process for attendees and organizers, reducing the need for multiple scans and improving the user experience.
This might be a possible solution for this issue
Both of the QR codes when scanned gives a single string (From the example below)
Ticket Code : 5uhbd49wms2fakafn5nzq7pcqpbjun2v Lead Scanning Code : PZD97WTMFJ
Now a possible solution might be to encode both of these strings in a single QR code that may be in the form of json so that when scanned the value is returned as
{
"ticket": "5uhbd49wms2fakafn5nzq7pcqpbjun2v",
"lead": "PZD97WTMFJ"
}
while scanning the QR a logic can be implemented to retrieve the necessary string and proceed with further operations.