Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The extension added a new product type called Event Ticket Product into the system, so you need to add a new product of type Event Ticket Product to get started. 


Enter information into each of the form's fields:


 

Information

At Event Booking Tab > Click on Schedule to set schedule for the event.  Admins can set up multiple locations, multiple days, and multiple sections for each event. Especially, you can set up the event enable or disable with for each location. 


 

  • Location: Specify the location details
  • Date & Time of Event: specify the event date. 

...

Admin can choose Default Email Template or you can customize the email that is sent to their customers. 

 


You can refer to Below is the email template below

 

Code Block
languagexml
themeEmacs
titleEmail Template
linenumberstrue
{{template config_path="design/email/header_template"}}
<p>{{trans "Welcome to %store_name." store_name=$store.getFrontendName()}}</p>
<ul>
 <li><strong>{{trans "Event Name: "}}</strong> <em> {{var title}}</em></li>
 <li><strong>{{trans "Customer Name: "}}</strong> {{var customer_name}}</li>
 <li><strong>{{trans "My Code: "}}</strong> {{var ticket_code}}</li>
 <li><strong>{{trans "Location Title: "}}</strong> {{var location_title}}</li>
 <li><strong>{{trans "Location Detail: "}}</strong> {{var location_detail}}</li>
 <li><strong>{{trans "Date: "}}</strong> {{var date}}</li>
 <li><strong>{{trans "Time: "}}</strong> {{var time}}</li>
 <li><strong>{{trans "Quantity: "}}</strong> {{var qty}}</li>
 <li><strong>{{trans "Option: "}}</strong> {{var option_type}}</li>
</ul>
{{template config_path="design/email/footer_template"}}

...