Hi,
I'm trying to to customize our Ticket Details template to load an additional div when the Ticket Type is "Schedule a Session".
I'm using the following code; however, it is showing up on all of our tickets - not just the type I'm aiming for. Any ideas what I might be doing wrong?
{% if ticket.type == ‘Schedule a Session’ %}
<p>Ipsum Lorum</p>
{% endif %}
I've also tried ticket.type_name with no luck.Â