Display Each Item
Last updated
Last updated
Some orders may have multiple if an order has multiple listing Agents, you will want to display each of the listing agents on that order. Below are examples of commands to accomplish this that you can copy/paste into your template. These commands may already be in your template, but please refer back here and copy/paste if you delete them.
This command lists all listing Agents on an order, whether it's 1, 2, or even more. If you want to remove some of the information, like the brokerage, for example, delete the whole line "Brokerage: {{this.brokerage}}".
If you alter this command, do not change {{#each listingAgents}}
or {{/each}}
as that will break the command.
This command lists the name of the package (if any), then all of the services within that package, then any services selected that are not part of that package. It also formats it into a bulleted list nested under the package name. We do not recommend making changes to this command as almost all components are necessary to function
This command will display the Packages the customer ordered IF there is one. If the customer ordered only Services and no Packages, it will display a list of all* Services ordered.
*Be careful, it lists all Services, whether that is 1 or 10. So if you use this in Subject lines for emails or calendar events, they may get quite long.
command
Output
{{#each listingAgents}} Name: {{this.displayName}} Phone: {{this.phone}} Email: {{this.email}} Brokerage: {{this.brokerage}} License Number: {{this.licenseNumber}} {{/each}}
Name: Sarah Jones
Phone: (111) 111-1111
Email: Sarah@company.com
Brokerage: Go for Broke
License Number: 123456
Name: Bobby Jones
Phone: (222) 222-2222
Email: Bobby@company.com
Brokerage: Go for Broke
License Number: 234567
command
Output
Booked packages and services{{#if package}} {{package}} {{#each services}} - {{this}} {{/each}} {{/if}} {{#each services_a_la_cart}} - (a la cart) {{this}} {{/each}}
Booked packages and services
Luxury Package
Home Photos
Drone Photo
Drone Video
(a la cart) 3D Matterport
(a la cart) Dedicated Listing Website
command
Output
{{#if package}} {{package.name}} {{else}}{{#each services_a_la_cart}}{{this}}{{#unless @last}}, {{/unless}}{{/each}}{{/if}}
Luxury Package
OR
Photo, Video, 2D Layout