• Hello,

    We would like to know if it’s possible to modify the fields displayed in the user’s profile when they have booked an event. Currently, we only see the “Date” field with the first date of the event, but for multi-day events, we would like to display the range from the first to the last date of the event.

    On a broader level, is it possible to customize the booking page in the user’s profile?

    Thank you in advance.

Viewing 1 replies (of 1 total)
  • Create the directory wp-content/plugin-templates/events-manager/templates and then copy wp-content/events-manager/templates/templates/my-bookings.php to that directory and then modify the copied file.

    Here’s the line that displays the date:

                                        <td><?php echo $EM_Event->start()->i18n( get_option('dbem_date_format') ); ?></td>

    The end date would be $EM_Event->end() instead of $EM_Event->start().

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.