Skip to main content
All CollectionsDocumentsDocuments FAQ
How can I remove the day of the week from a merge field?
How can I remove the day of the week from a merge field?
Updated over a week ago

Related Questions:

  • Can I change the Booking start date to be July 28, 2022?

  • Can I change the Booking End date to be July 28, 2022?

  • Can I change the Event start date to be July 28, 2022?

  • Can I change the Event End date to be July 28, 2022?

  • Can I remove the day of the week from My Booking Start date?

  • Can I remove the day of the week from My Booking End date?

  • Can I remove the day of the week from My Event Start date?

  • Can I remove the day of the week from My Event End date?

Environment:

Event Temple Web App
โ€‹

Procedure:

When using merge fields for dates, for example, Booking Start Date - {{booking.startDate}}, the default format for the day will be Friday, April 1, 2022.

If you would like to remove the day of the week for the date, please use {{booking.startDate | parseDate | date:'longDate'}}, which will then pull only April 1, 2022.

The same logic applies for other dates, for example:

Booking End Date: {{booking.endDate | parseDate | date:'longDate'}}

Event Start Date: {{event.startDate | parseDate | date:'longDate' }}

Event End Date: {{event.endDate | parseDate | date:'longDate' }}

Did this answer your question?